$(document).ready(
	function (){
		$('a.gallery').zoomimage(
			{
				controlsTrigger: 'mouseover'
			}
		);
		$('ul.sideList > li > h3 > a').bind('click',
			function(){
				$(this).parent().next().slideToggle();
				return false;
			}
		);
	}
);
