$(document).ready(function() {
	$(".dropdown").hover(
		function() {
			$(this).children(".dropdown_2").stop(true,true);
			$(this).children(".dropdown_2").fadeIn("slow");
			$(this).children(".dropdown_2").children("div").stop(true,true);
			$(this).children(".dropdown_2").children("div").fadeIn("slow");
		},
		function() {
			$(this).children(".dropdown_2").stop(true,true);
			$(this).children(".dropdown_2").fadeOut("slow");
			$(this).children(".dropdown_2").children("div").stop(true,true);
			$(this).children(".dropdown_2").children("div").fadeOut("slow");
		}
	);
	
	$(".fade").hover(
		function() {
			$(this).stop(true,true);
			$(this).fadeTo("fast",0.6);
		},
		function() {
			$(this).stop(true,true);
			$(this).fadeTo("fast",1);
		}
	);
	
	$(".dropdown_1").hover(
		function() {
			$(this).children("a").children("img").stop(true,true);
			$(this).children("a").children("img").fadeTo("fast",0.6);
		},
		function() {
			$(this).children("a").children("img").stop(true,true);
			$(this).children("a").children("img").fadeTo("fast",1);
		}
	);
	
	$(".dropdown_2").hover(
		function() {
			$(this).children("div").children(".highlight").stop(true,true);
			$(this).children("div").children(".highlight").fadeIn("fast");
		},
		function() {
			$(this).children("div").children(".highlight").stop(true,true);
			$(this).children("div").children(".highlight").fadeOut(0);
		}
	);
	
});
