function initGallery() {
	var images = $('a[href$=".jpg"],a[href$=".JPG"],a[href$=".jpeg"],a[href$=".JPEG"]');
	images.attr('rel', 'gallery');
	images.fancybox({
		titlePosition: 'inside',
		titleFormat: function(a,b) {
			return this.orig[0].alt;
		}
	});
}

$(function() { initGallery() } );
