$(document).ready(function() {
    $('#header').find('ul li ul').hide();
    $("#header li:has(ul)").hover(
    function() {
        $(this).children(".head").addClass("open");
        $(this).find("ul").slideDown("normal");
    },
    function() {
        $(this).children(".head").removeClass("open");
        $(this).find("ul").hide();
    }
    );
});


