$(document).ready(function(){
	$("#header").corner("round");
	$("#products").corner("round");
	$("#additionalinfo").corner("round");
	$("#specials1").corner("round");
	$("#specials2").corner("round");
	$(".shop-top-background").corner("tr tl");
	$('#default #main').jScrollPane({showArrows:true, scrollbarWidth: 15});
	//$('#borders').jScrollPane({showArrows:true, scrollbarWidth: 15});
	$('input[type="image"]').addClass("submit-button");

    var sidebarHeight = $('#main').height();

    if (sidebarHeight > 280) {
        $('#shop #left').css({height: sidebarHeight});
    }

    $('#main').onImagesLoad({
        itemCallback: function(_this){
            $(_this).jScrollPane({showArrows:true, scrollbarWidth: 15});
        }
    });
    $('#borders').onImagesLoad({
        itemCallback: function(_this){
            $(_this).jScrollPane({showArrows:true, scrollbarWidth: 15});
        }
    });

    $('.PaymentOptions').click(function(){
        if (this.id == 'PayCredit'){
            //set the payment option value, submit the form
            $('#PaymentOption').val('ByCreditCard');
            $('#CheckoutForm').submit();
            return true;
        } else {
            var selectedCountry = $('#Us0_Country').val();
            var subTotal = $('#subTotal').val();
        	if(selectedCountry != 'NZL' && subTotal > 0){
                alert("Sorry, this payment option is available to NZ customers only");
                return false;
        	}
            $('#PaymentOption').val('ByDirectPayment');
            $('#CheckoutForm').submit();
            return true;
        }
    });


});
