// JavaScript Document
function init_zoomimage() {
	
	$('a.gallery').zoomimage({
		border: 5,
		centered: true,
		hideSource: false,
		controlsTrigger: 'mouseover',
		shadow: 5,
		controls: true,
		opacity: 1,
		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 }
				);
		}
	});
}

