$(document).ready(function() {
    $(".header ul.header-menu li.customer-login").hover(function () {
            //$(this).addClass('active');
            $(this).children('.header ul.header-menu li.customer-login ul').fadeIn('fast');
    }, function () {
            //$(this).addRemove('active');
            $(this).children('.header ul.header-menu li.customer-login ul').hide();
    });
});
