$(document).ready(function(){
	
	$(".productos").fadeTo("fast",0.5);	
	
	$(".productos").hover(function()
	{
		$(this).fadeTo("fast",1);	
	}
	, function()
	{
		$(this).fadeTo("fast",0.5);	
	});
	
	$(".productos1").fadeTo("fast",0.5);	
	
	$(".productos1").hover(function()
	{
		$(this).fadeTo("fast",1);	
	}
	, function()
	{
		$(this).fadeTo("fast",0.5);	
	});
	
	
	$(".destacado").hover(function()
	{
		var next = $(this).find('div');
		next.stop(true,true).fadeTo("fast",0.5);	
	}
	, function()
	{
		var next = $(this).find('div');
		next.fadeTo("fast",1);	
	});
		
	
});
