// JavaScript Document
jQuery(function($) {	
	
	$('.texto_hover').css ({
		background: '#000',
		display: 'none'
	}).fadeTo(0, 0.65);


	$('.overDestacado')
		.mouseover(function(){		
			$('.texto_hover', this).fadeIn(0);
		})
		.mouseout(function(){							
			$('.texto_hover', this).fadeOut(0);
		});

	
});
