﻿$(document).ready(jsPageOnload);

function jsPageOnload() {
    // StretchSecondMenuItems();
    SetupExpandingBizForms();
}

function StretchSecondMenuItems() {
    var items = $(".SecondMenu > ul > li");
    items.css("width", ((99 / items.length)) + "%");

}

function SetupExpandingBizForms() {
    $(".ExpandingBizFormLink").click(function () {
        var form = $(this).parent().children(".ExpandingBizFormForm");
        if (form.css("display") == "none") {
            form.show();
            $(this).addClass("Expanded");
        }
        else {
            form.hide();
            $(this).removeClass("Expanded");
        }
    });
}

