$(function() {
	$("div.dropdown_main").each(function(a) {
		
		$(this).hover(function() {
			$(this).css("background", "url(img/menu2/"+$(this).attr("id")+"2.gif) transparent no-repeat").height(200);
			$(this).find("div.dropdown").show();
			
		}, function() {
			$(this).css("background", "url(img/menu2/"+$(this).attr("id")+"1.gif) transparent no-repeat").height(35);
			$(this).find("div.dropdown").hide();
		});
		
		$(this).find("div.dropdown div.dropdown_row").hover(function() {
			$(this).find("a.link").addClass("link2");
			$(this).find("div.dropdown_left").addClass("dropdown_left2");
			$(this).find("div.dropdown_right").addClass("dropdown_right2");
			
			$(this).find("a.link_bottom").addClass("link_bottom2");
			$(this).find("div.dropdown_left_bottom").addClass("dropdown_left_bottom2");
			$(this).find("div.dropdown_right_bottom").addClass("dropdown_right_bottom2");
			
		}, function() {
			$(this).find("a.link").removeClass("link2");
			$(this).find("div.dropdown_left").removeClass("dropdown_left2");
			$(this).find("div.dropdown_right").removeClass("dropdown_right2");
			
			$(this).find("a.link_bottom").removeClass("link_bottom2");
			$(this).find("div.dropdown_left_bottom").removeClass("dropdown_left_bottom2");
			$(this).find("div.dropdown_right_bottom").removeClass("dropdown_right_bottom2");
		});
	});
});