$(document).ready(function(){

    $('.header-menu ul li').hover(
        function() {

            $(this).find({ backgroundColor: "#154e9d"},'ul',this).fadeTo('fast', 0.80); 
            $(this).addClass("active");
            $(this).find('ul',this).fadeIn('fast');            
        },
        function() {
            $(this).removeClass("active");        
            $(this).find('ul', this).fadeOut('fast');
        }
    );
});



