$(document).ready(function() {
    $("ul#primary-nav > li[class!=active-parent]").bind("mouseenter", function(e) {
        $(this).find("div").stop(true, true).fadeIn();
    });
    
    $("ul#primary-nav > li[class!=active-parent]").bind("mouseleave", function(e) {
        $(this).find("div").stop(true, true).fadeOut();
    });
});
