    /* ================================================================ 
    This copyright notice must be untouched at all times.
    Copyright (c) 2008 Stu Nicholls - stunicholls.com - all rights reserved.
    =================================================================== */
    $(document).ready(function() {
        closetimer = 0;
        if ($("#nav")) {
            $("#nav b").mouseover(function() {
                clearTimeout(closetimer);
                if (this.className.indexOf("clicked") != -1) {
                    $(this).parent().next().slideUp(300);
                    $(this).removeClass("clicked");
                }
                else {
                    $("#nav b").removeClass();
                    $(this).addClass("clicked");
                    $("#nav ul:visible").slideUp(300);
                    $(this).parent().next().slideDown(300);
                }
                return false;
            });
            $("#nav").mouseover(function() {
                clearTimeout(closetimer);
            });
            $("#nav").mouseout(function() {
                closetimer = window.setTimeout(function() {
                    $("#nav ul:visible").slideUp(300);
                    $("#nav b").removeClass("clicked");
                }, 2000);
            });
        }
    });