$(document).ready(function() {
    $("ul li ul").hide();
    $("li").mouseenter(function() {
        $(this).children("ul").fadeIn('slow');
    });
    $("li").mouseleave(function() {
        $(this).children("ul").hide();
        $(this).find('li.openable').removeClass('active').find('div.accordion').hide();
    });
});	
