$(document).ready(function(){
        if ($('#items_total_qty').text() != 0) {
                $('#miniCartList_').show();
        }

        $(window).scroll(function(){
                var topline = 58;
                var output;

                if ($('#items_total_qty').text() != 0) {
                        if ($(window).scrollTop() > topline) {
                                output = $(window).scrollTop();
                        } else {
                                output = topline;
                        }

                        $('#output').text(output);
                        $('#miniCart').animate({top:output+"px" },{queue: false, duration: 350});
                        $('#miniCartList').animate({top:output+66+"px" },{queue: false, duration: 350});
                        $('#miniCartList_').animate({top:output+66+"px" },{queue: false, duration: 350});
                }
        });

    $(".mainimgchanger").click(function(){
//        $('#mainimg').html('<img class="magnify" src="/uimg/large/' + $(this).attr('rel') + '" width="350" height="263" border="0" />');
        $('#mainimg').html('<a class="magnify" title="'+ $(this).attr('title') +'" rel="zoombox" href="/uimg/large/' + $(this).attr('rel') + '" ><img width="350" height="263" src="/uimg/large/' + $(this).attr('rel') + '"  alt="' + $(this).attr('alt') + '" /></a>');
 //               $('#mainimg .magnify').imageMagnifier();
 //                  $('#mainimg .magnify').zoombox.init();

        return false;
    });

});

function checkout_shipping_country_onchange(countryid) {
        set_shopping_cart_shipping_(countryid, $('#shipping_state').val());
        get_state(countryid);
        $('#shipping_country').val(countryid);
        if (countryid != 1 && countryid != 39) {
                $('#Customer_State').attr('value', '');
        }
}
