$(document).ready(function() {
	$(".dropdown").hover(
		function() {
			var drop = $(this).children(".dropdown_inner").children(".dropdown_2:has(.link)");
			drop.stop(true,true);
			var distance = "-" + ($(drop).height()+4);
			drop.animate({ "bottom": distance },500);
		},
		function() {
			var drop = $(this).children(".dropdown_inner").children(".dropdown_2:has(.link)");
			drop.stop(true,true);
			drop.animate({ "bottom": "-52px" },500);
		}
	);
	
	$(".dropdown_1 .dropdown_link").hover(
		function() {
			$(this).children("img").stop(true,true);
			$(this).children("img").fadeTo("fast",0.5);
		},
		function() {
			$(this).children("img").stop(true,true);
			$(this).children("img").fadeTo("fast",1);
		}
	);
	
	$(".dropdown_2 .dropdown_link").hover(
		function() {
			$(this).stop(true,true);
			$(this).fadeTo("fast",0.5);
		},
		function() {
			$(this).stop(true,true);
			$(this).fadeTo("fast",1);
		}
	);
	
	$(".fade").hover(
		function() {
			$(this).stop(true,true);
			$(this).fadeTo("fast",0.5);
		},
		function() {
			$(this).stop(true,true);
			$(this).fadeTo("fast",1);
		}
	);
	
});
