function Switch(image, image_big)
{
  var current = jQuery('#product img').attr("src");
  if (image == current) {
    return false;
  }
  else {
    jQuery(".jqZoomWindow").remove();
    jQuery(".jqZoomPup").remove();
    jQuery(".jqzoom").remove();  
    jQuery('img.productMain').remove();

    jQuery('#product').append('<a href="'+image_big+'" class="jqzoom"><img src="'+image+'" class="productMain" /></a>');

    jQuery('#product a').jqzoom({
        zoomWidth: 355,
        zoomHeight: 300,
        position : 'right',
        yOffset :49,
        xOffset :13,
	  lens :false,
        title :false
    });

  }
}