    
    jQuery(document).ready(function() {
        /* Top Nav */
        jQuery(".topnav li").mouseover(function() {
            jQuery(this).append('<div class="pseudolink2" style="display: none;">');
            jQuery("> .pseudolink2", this).fadeIn(300, function() {
            });
        }).mouseout(function() {
            jQuery("> .pseudolink2", this).fadeOut(300, function() {
                jQuery(this).remove();
            })
        });        
        /* Main Nav */
        jQuery(".nav li").mouseover(function() {
            jQuery(this).append('<div class="pseudolink" style="display: none;">');
            jQuery("> .pseudolink", this).fadeIn(300, function() {
            });
        }).mouseout(function() {
            jQuery("> .pseudolink", this).fadeOut(300, function() {
                jQuery(this).remove();
            })
        });
    });
