$(document).ready(function(){		   

//	$(".ArticuloImagenPrincipal img").load(function(){
//		$(this).fadeIn();
//	});		
	
    $(".VistaReducidaGuia").bind("mouseenter",function(){
		$(this).find(".info").show();
    }).bind("mouseleave",function(){
		$(this).find(".info").fadeOut("fast");
    });
	   

});
