$(function(){
	$('.foto_grande img, .fotos img')
	.addClass('hand')
	.click(function(){
	    var nsrc = this.src.replace('/fotos/', '/ampliaciones/');
		window.open(nsrc , "ampliacion" , "width=810,height=600")				
	});
	
});