/* MicroAid - jQuery Code */
/* Developed by DuroMedia */
/* Developer: Adam Duro */

$(document).ready(function() {
    
    /* --------------------------------------- */
    /* --( Navigation )-- */
    /* --------------------------------------- */
    
    $('#nav').menu({
        showDelay: 0,
        hideDelay: 1000,
        switchDelay: 800,
        show: function() {
            if ($(this).css('visibility') != 'visible') {
                $(this).css("visibility", "visible").hide().slideDown('slow');
            }
                
            return false;
        },
        hide: function() {
            $(this).attr('hide', 'true');
            $(this).slideUp('slow', function(){
                $(this).css("visibility", "hidden")
            });
                
            return false;
        }
    });
     
});
