		jQuery(function() {
			jQuery('ul#navigation li').hover(function(){
				jQuery(this).find('strong').animate({top:'-81px'},{queue:false,duration:500});
				jQuery(this).find('em')				
					.css("top","-81px");  		
			}, 
			function(){
				jQuery(this).find('strong').animate({top:'-162px'},{queue:false,duration:500});
				jQuery(this).find('em')
				.css("top","-0px");  		
				});
		});
