$(window).ready(function(){

    // rollovers on all <li>'s in the nav
    $("#top_nav ul li a:not(#top_nav ul li a.top_level)").hover(
        function () {
            $(this).css("color", "#306B68");
        },
        function () {
            $(this).css("color", "white");
        }
    );
    $("#top_nav ul li a:not(#top_nav ul li a.first, #top_nav ul li a.first_selected)").hover(
        function () {
            $(this).css("background-color", "#68A8A6");
//            $(this).css("color", "#306B68");
        },
        function () {
            $(this).css("background-color", "");
//            $(this).css("color", "white");
        }
    );
    // custom rollover colors for the first nav item
    $("#top_nav ul li a.first").hover(
        function () {
            $(this).css("background-color", "#99AA56");
        }, 
        function () {
            $(this).css("background-color", "");
        }
    );

    // drop down menus
    $("#top_nav ul li").hover(
        function() {
            $(this).children("ul").show();
        },
        function() {
            $(this).children("ul").hide();
        }
    );

});

