

jQuery(document).ready(function() {
    	
    
	var options = 
	{
		zoomWidth: 350,
		zoomHeight: 350,
			xOffset: 33,
			yOffset: 0,
			lens: true,
                	showEffect:'show',
                	hideEffect:'fadeout',
                	fadeoutSpeed: 'slow',	
			position: "left" //and MORE OPTIONS
	};
	$('.jqzoom').jqzoom(options);    
    
    
});



function switchImage(imgName, imgSrc){
  if (document.images){
    if (imgSrc != "none"){
      document.images[imgName].src = imgSrc;
    }
  }
}
