function SwapPic(image, image_big)
{
    var current = $('#product-image img').attr("src");
    if (image == current) {
        return false;
    }
    else {
        $(".jqZoomWindow").remove();
        $(".jqZoomPup").remove();
        $(".jqzoom").remove();  
        $('img.feature').remove();

        $('#product-image').append('<a href="'+image_big+'" class="jqzoom"><img src="'+image+'" class="image_border" /></a>');

        $('#product-image a').jqzoom({
            zoomWidth: 440,
            zoomHeight: 440,
            showEffect:'fadein',
            hideEffect:'fadeout',
            fadeoutSpeed: '100',
            fadeinSpeed: '300',
            xOffset :10,
            yOffset :0, 
            lens: true,
            title :false
        });

    }
}

$(document).ready(function(){
    // Image Zoom on Product Featured Picture
    // This is for the first image only
    $(".jqzoom").jqzoom({
        zoomWidth: 440,
        zoomHeight: 440,
        showEffect:'fadein',
        hideEffect:'hide',
        fadeinSpeed: 'fast',
        xOffset :10,
        yOffset :0,
        lens: true,
        title :false
    });
});
