$(document).ready(function(){
	$(".efecto").mouseenter(function() {
		$(this).stop();
		$(this).fadeTo(500, 0.5);
	});
	
	$(".efecto").mouseleave(function() {
		$(this).stop();
		$(this).fadeTo(0, 1);
	});
});
