(function(jQuery) {

  jQuery.fn.galimg = function() {

	return this.each(function() {
	  var idCapaGaleria = jQuery(this).attr("id");
	
	  jQuery("a.imageLink").click(function() {
	    
		var rutaImagen = jQuery(this).attr("href");
		var hgt = "500";
		var altImagen = jQuery(this).children("img").attr("alt");
		
		//jQuery("#" + idCapaGaleria + " .imgprin img").fadeOut("normal").remove();
		
		var objImagen = new Image(); 
		
		objImagen.onload=function() {
			jQuery("#" + idCapaGaleria + " .imgprin").find('img').attr('src',this.src);
			//jQuery("#" + idCapaGaleria + " .imgprin").find('img').fadeIn('fast');
        };
		//jQuery("#" + idCapaGaleria + " .imgprin").find('img').fadeOut('fast',function(){objImagen.src=rutaImagen;});
		objImagen.src=rutaImagen;
        return false;
      });
	});
  };

})(jQuery);