$(function(){
	// slide-down images on homepage
	$('#MenuBanner li, #MenuBannerEs li').hover(function(){
		$(this).find('img').animate({top:'151px'},{queue:false,duration:600});
	}, function(){
		$(this).find('img').animate({top:'0px'},{queue:false,duration:600});
	});	
});

