$(function(){
	$(".imgZoomer").fancybox({ "titleShow": false }).each(function(){
	//Add "Click to enlarge" text to title for zoomable image
		var t = $(this).attr("title").replace(/^\s+/, "").replace(/\s+$/, "");
		if(t != ""){
			if(!t.match("/\.$/")) t += ".";
			t += " ";
		}
		t += "Click to enlarge.";
		$(this).attr("title", t);
	});
});
