(function($){
	var initLayout = function() {
		//var hash = window.location.hash.replace('#', '');
		$('a.imageGallery').zoomimage({
			controlsTrigger: 'mouseover',
			//className: 'custom',
			border: 10,
			shadow: 5,
			beforeZoomIn: function(boxID) {
				$('#' + boxID)
					.find('img')
					.css('opacity', 0)
					.animate(
						{'opacity':1},
						{ duration: 500, queue: false }
					);
			},
			beforeZoomOut: function(boxID) {
				$('#' + boxID)
					.find('img')
					.css('opacity', 1)
					.animate(
						{'opacity':0},
						{ duration: 500, queue: false }
					);
			}
		});
	};
	EYE.register(initLayout, 'init');
})(jQuery)