$(function(){
    $('.collapsible h4').mouseenter(function(){
        $(this).css('cursor','pointer')
        }).click(function() {
        $(this).next().toggle('blind',300);
        return false;
    }).next().hide();
    
    $('.Menu ul').menuBox();
});
