function initGallery() {
	Galleria.loadTheme('/scripts/themes/classic/galleria.classic.js');
    $('#galleria').galleria({
		image_crop:false,
		thumb_crop:false,
		transition:'fade',
		image_position:'0 center',
		show_info:false,
		height:600,
		max_scale_ratio:1,
		extend: function() {
			this.bind(Galleria.IMAGE, function(e) {
				$(e.imageTarget).css('cursor','pointer').click(this.proxy(function() {
					this.openLightbox();
				}));
			});
		}
	});
	//$('body').append('<img src="/images/transparent.gif" style="position:absolute;top:160px;left:200px;height:545px;width:690px;z-index:2147483647;"/>');
}

$(document).ready(function() {
	$('#titles').click(function() {
		window.location.href='/?'+Math.random();
	});
});
