
$(document).ready(function(){
	
	$(".header ul li").hover(function(){
		$(this).find("ul").fadeIn(500);		
		//$(this).find("ul").animate({"padding-top":"65px"},{queue:false,duration:500});
		$(".content").animate({opacity:0.5},{queue:false,duration:500});
		
	}, function(){
		$(this).find("ul").hide();
		//$(this).find("ul").animate({"padding-top":"60px"},{queue:false,duration:100});
		$(".content").animate({opacity:1},{queue:false,duration:500});
		
	})

	
});



