jQuery(document).ready(
function() {
	jQuery('div[class="shadow"]').addClass("jShadow");
	jQuery('div[class="shadow jShadow"]').removeClass("shadow");
	
	jQuery("ul#PfNavMega li").hover(
		function() 
			{
				jQuery(this).children('div[class="jShadow"]').show();
				jQuery(this).children('div[class="jShadow"]').children('div[class="InnerMegaDiv"]').stop().animate({top:'0px'},{queue:false,duration:300});
			},
		function() 
			{
		
				var shadowElement = jQuery(this).children('div[class="jShadow"]');
				shadowElement.children('div[class="InnerMegaDiv"]').clearQueue().stop(true, true);
				shadowElement.children('div[class="InnerMegaDiv"]').animate({top:'-300px'},{queue:false,duration:300,complete:function() {shadowElement.hide();}});
				
			}
	);
}
);
