﻿$(function () {
    // Show initial order tab
    //$("#order .tab-content").hide().filter(":first").show();
    //$("#order ul.tabs li:first").addClass("current");

    if ($("#ctl00_ofMain_liTabCollection").hasClass("current")) {
        $(".deliveryContent").hide();
        $(".collectionContent").show();
    }
    else {
        $(".deliveryContent").show();
        $(".collectionContent").hide();
    }

    // Order tab click function
    $("#order ul.tabs li a").click(function () {
        $("#order .tab-content").hide().filter(this.hash).show();
        $("#order ul.tabs li").removeClass("current");
        $(this).parent().addClass("current");

        if ($("#ctl00_ofMain_liTabCollection").hasClass("current")) {
            $(".deliveryContent").hide();
            $(".collectionContent").show();

            // ViewBasket.aspx's delivery panel
            $(".panelDeliveryAddress").hide();
            $(".panelPaymentAddress").show();
        }
        else {
            $(".deliveryContent").show();
            $(".collectionContent").hide();

            // ViewBasket.aspx's delivery panel
            $(".panelDeliveryAddress").show();
            $(".panelPaymentAddress").hide();
        }

        return false;
    });
});

function SwapVisibility(HideContainerId, ShowContainerId) {
    document.getElementById(HideContainerId).style.display = "none";
    document.getElementById(ShowContainerId).style.display = "block";
}



