jQuery(".info_page_photos_links a").each(function(){
var tmp = new Image();
tmp.src = jQuery(this).attr("href");
}).unbind('click').click(function(){
var largePath = jQuery(this).attr("href");
var largeAlt = jQuery(this).attr("title");
jQuery(".info_page_photos_large").fadeTo("low", 0.1, function(){
$(this).attr({ src: largePath, alt: largeAlt }).fadeTo("low", 1);
});
return false;
});