$(document).ready( function() {

    function hideAllSubs()
    {
        $('#menu a').removeClass('active');
        $('#menu ul').stop().hide().css({width: '203px', height: 'auto', opacity: 1});
    }

    $('#menu>li>a').click( function() {
        if( $('ul', $(this).parent()).length > 0)
        {
            return false;
        }
    });

    $('#menu>li>a').mouseover( function() {
        hideAllSubs();
        if( $('ul', $(this).parent()).length > 0)
        {
            $(this).addClass( 'active');
            $(this).next('ul').show( 250);
        }
    });

    $(document).click( function() { hideAllSubs(); });
    $('#menu ul a').click( function() {
        location.href = $(this).attr('href');
        return false;
    });
});