jQuery(document).ready(function(){
	
	$(".DestacadosHome li").hover(

		function(){
			$(this).addClass("iehover");
			$(this).find("span").attr({
				"style": 'display: inline;'
			});

			$(this).find("span").animate({opacity: 1, top: "10"}, {queue:false, duration:400});
		}, 

		function(){
			$(this).find("span").attr({"style": 'display:none'});
			$(this).removeClass("iehover");
		});
});
