// JavaScript Document

$(document).ready(function(){
						  $(".down_popup").hover(function(){
														  $(this).addClass("down_popup_hover");
														  $(this).find("dl").fadeIn(200);
														  },function(){
															 $(this).removeClass("down_popup_hover");
															 $(this).find("dl").fadeOut(200);
														  });
						   });