// jQuery
jQuery(document).ready(function() {
	
	/** zoom */
	Shadowbox.init({
			handleOversize: "drag",
			modal: true
	});
	
	/** photo */
	$('.photo').mouseover(function() {
		$(this).removeClass('photo_off');
	}).mouseout(function() {
		$(this).addClass('photo_off');
	});
	
	/** scrollpane */
	$('.scroll-pane').jScrollPane({ showArrows: true, autoReinitialise: true });

});
