$(document).ready(function(){
        
        
        $('#nav li').hover(function(){
          $(this).find('.subnav').show();
        },function(){
          $(this).find('.subnav').hide();
        });
        
        if ($.browser.mozilla) {
            $('body').addClass('mozilla');
         }
        

        var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
          
        if (is_chrome == true) {
            $('body').addClass('chrome');
        }  

        
    });


