 	$(document).ready(function(){
		$(function() {
	 
			var options3 =
			{
				zoomWidth: 300,
				zoomHeight: 300,
hideEffect:'fadeout',
		fadeoutSpeed: 'slow',
 position : 'left',

				xOffset: 0,
				title: false,
				lens:false
			}
			$("#jqzoom").jqzoom(options3);  
//bind click event to thumbnails, id has been set to the src of the scaled large image, href set to the full size
	$(".image-thumb").each(function(){
		$(this).bind("click", function(){
			$(".image-thumb").each(function(){$(this).removeClass('current')});
			$(this).addClass('current'); 
			$("#image-main").attr('src',$(this).attr('id'));
			$("#jqzoom").attr('href',$(this).attr('href'));
			$("#jqzoom").jqzoom(options3);
			return false;
		});
	});
});



});

 
