// JavaScript Document



<!--  This section of javascript allows first level of navigation to toggle -->

$(function() {
    $('#topnav > ul > li').each(function() {
        var toggler = $(this).children('a.drop');
        var sublist = $(this).children('ul');

        toggler.click(function() {
            sublist.toggle("slow");
            return false;
        });
        sublist.hide();
    });
});
    


  <!--  This section of javascript allows second level of navigation to toggle -->  
    
$(function() {
    $('#topnav > ul > li > ul > li').each(function() {
        var toggler = $(this).children('a.drop');
        var sublist = $(this).children('ul');

        toggler.click(function() {
            sublist.toggle("slow");
            return false;
        });
        sublist.hide();
    });
});

