
	$().ready(function() {
	     	$(".img-shadow-col,.categoriasItem .subtitulo").click( function(e) {
				var elid= $(this).parent().attr('id');
				elid= elid.replace('Cat','');
	           	document.location.href = "cat.php?id="+ elid;
	           	e.preventDefault();
	     	});
	});
