﻿var currentItemIndex = null;
jQuery(document).ready(function() {
    if (location.href.indexOf("Products.aspx") != -1) {

        $("#navigation li ul li a").each(function() { if (location.href.indexOf(this) != -1) { ShowSub($(this).parent().parent().attr("id")); $(this).css("color", "#FFFFFF").css("background-color", "#80756F"); return false; } });
    }
});

function ShowSub(id) {
    if (id != currentItemIndex) {
        if (currentItemIndex != null) {
            $("#" + currentItemIndex).hide();
        }
        $("#" + id).show();
        $("#mainLeft").css("height", "auto");
        FullDiv();
        currentItemIndex = id;
    }
}