﻿var D = {};

(function ($) {
    $(document).ready(function () {
        // Top Menu
        $('.topnav').children('li').mouseenter(function () {
            $(this).children('.dropdown').show();
        }).mouseleave(function () {
            $('.dropdown').hide();
        });
        // Setup any jump links
        $('.jumplink').each(function (i, e) {
            $(e).click(function () {
                var url = $(e).siblings('select').val();
                document.location = url;
                return false;
            });
        });
    });
})(jQuery);



