$(document).ready(function(){
	zOptions = {
		zoomWidth:300,
		zoomHeight:300,
		position:'right',
		yOffset:0,
		xOffset:0,
		showEffect:'fadein',
        hideEffect:'fadeout',
        fadeinSpeed:'medium',
		fadeoutSpeed:'fast',
		title:false,
		showPreload:false
	}

	//Handle clicking on the thumbnails, swap the mainimage and recycle the zoomer
	$('.seemore').bind('click', function(e) {
    	e.preventDefault();
    	$('.jssProductFullImage').attr('src', $(this).attr('href'));
    	$('.productZoom').attr('href', $(this).attr('href'));
    	medUrl = $(this).attr('href').replace('popup', 'large');
    	medUrl = medUrl.replace(/_600/g, '_300');
    	medUrl = medUrl.replace(/x600/g, 'x300');
    	$('.productZoom img').attr('src', medUrl );
    	//Recall the zoomer to update the page
    	$('.productZoom').trigger('changeimage');
    });

	$('.productZoom').jqzoom(zOptions);
});