$(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/medium/' + $(this).attr('rel') + '" rel="/uimg/large/' + $(this).attr('rel') + '" width="240" height="180" border="0" />');
		$('#mainimg .magnify').imageMagnifier();
        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', '');
	}
}