$(document).ready(function(){ 
	$("#caja_publi_index .imagen").css("opacity","1").hover(function(){
		$(this).stop().fadeTo("slow",0); // This sets the opacity to 100% on hover
	},function(){
		$(this).stop().fadeTo("slow",1); // This sets the opacity back to 60% on mouseout
	});
	
	// Quitando border de las imágenes que son link
	$("a:has(img)").addClass("noborder");





//end general.js
});
