$(document).ready(function(){
    $('li.menu').hover(
        function() { $('ul', this).css('display', 'block'); },
        function() { $('ul', this).css('display', 'none'); });
    $('li.dropbox').hover(
        function() { $('ul', this).css('display', 'block'); },
        function() { $('ul', this).css('display', 'none'); });

    if (navigator.appName == 'Microsoft Internet Explorer') {
            $('#navigation ul li').hover(
                function() { $('ul', this).css('display', 'block'); },
                function() { $('ul', this).css('display', 'none'); });
    }
    /*
    $('#navigation ul li ul').css('display', 'none');
    $('#navigation ul li ul').css('border', 'solid 1px red');
    */
    /*
    $('#navigation ul li').hover(
        function() { $('ul', this).css('display', 'block'); },
        function() { $('ul', this).css('display', 'none'); });
    $('#navigation ul ul li').hover(
        function() { $('ul', this).css('display', 'block'); },
        function() { $('ul', this).css('display', 'none'); });
    */

});

