$(document).ready(function() {
// Initialize things, hide the subnavs
$("#Menu ul").removeClass('active').addClass('inactive').hide();

// Set the events
$("#Menu>li").each(function(){
    if ($(this).children('ul').length > 0) {
        $(this).children('a').attr('href','javascript:;').click(function(){
            $('#Menu ul').removeClass('active').addClass('inactive');
            $(this).next('ul').addClass('active').removeClass('inactive');
            $('#Menu ul.inactive:visible').slideUp('slow');
            $(this).next('ul:hidden').slideDown('slow');
        });
    }
});
});
