Código:
var images = new Array("fachada","entorno","sala","recamara","bano","cocina"); for(x in images){ $.ajax({ url:"fotografias/"+$('#cve_avaluo').val()+"/"+images[x]+".jpg", type:'HEAD', success: function(){ $('.tdImagen').eq(x).html("<img src='fotografias/"+$('#cve_avaluo').val()+"/"+images[x]+".jpg' width='100%' height='100%'>"); } }); }