﻿/// <reference path="../common/common.js" />
/// <reference path="../common/pageflow.js" />

$(document).ready(function () {
    _routeValue = new _route(STATETYPE_MAIN_INDEX/*, SECTION_TRADEREQUEST, TYPE_ACTIVE*/);
    _tab2Class = "main-section";

    _arrTabPanels.push("index-tabs-container");
    _arrTabPanels.push("traderequest-menu");
    _arrTabPanels.push("auction-menu");

    _bindTabs();
    _bindRedirectors();

    if ($("#auction-section").val() == "Archive") {
        $("#auction-menu").find(".main-section").removeClass("selected");
        $("#auction-menu").find(".main-section[stype=Archive]").addClass("selected");
    }

    _bindGridEvents("#traderequest-container");
    _bindGridEvents("#auction-container");
});

