$(document).ready(function(){
	
    //check if javascript are enabled
    $("body").removeClass("noJs");
    
    //Dropdown menu
    $("#nava li").hover(function(){
        $(this).children("ul").stop(true, true).fadeIn(300);        
    }, function(){
        $(this).children("ul").stop(true, true).fadeOut(200);
    });	
	
});



