/* *********************************************************************************** */
/* * jquery include * */
/* * Selectors for Main menu navigation * */
/* *********************************************************************************** */

    var currentFocus = null;
    var currentMenu = null;
    $(document).ready(
        function()
        {
            $(':input').focus(function() {
                if (this.className != "textbox")
                    currentFocus = this;
            }).blur(function() {
                currentFocus = null;
            });
            $(".level1 li.item").bind("mouseenter", function() {
                if (currentFocus != null && currentMenu != null) {
                    $("div.level2").hide();
                    $("a.topLevel").removeClass("selected");
                }
                $("div.level2", this).show();
                $(this).find("a.topLevel").addClass("selected");
                currentMenu = this;
            }).bind("mouseleave", function() {
                if (currentFocus == null) {
                    $("div.level2").hide();
                    $(this).find("a.topLevel").removeClass("selected");
                } else {
                    $("div.level2", this).show();
                }
            });
        }
    );    
