﻿$(function() {
    $(".topnavmenu").bgiframe();

    $("#mainmenu li").click(function() {

        if ($(this).attr("allowclickthrough")) return true;

        if ($("#sm_" + $(this).attr("id")).length > 0) {
            $("#mainmenu li.active").removeClass("active");
            $("ul[id^='sm_'].active").removeClass("active");

            $(this).addClass("active");
            $("#sm_" + $(this).attr("id")).addClass("active");

            return false;
        }
    });

    var navTimeout = {};
    var navElement;

    $("li[id^='ssm_']").hover(
        function() {
            navElement = $(this);
            navTimeout = $.timer(400, function() { $("#dd_" + navElement.attr("id").replace("ssm_", "")).show(); });
        },
        function() {           
            $.clearTimer(navTimeout);
            $("#dd_" + $(this).attr("id").replace("ssm_", "")).hide();
        }
    );
});