var $j = jQuery.noConflict();
$j(document).ready(function(){
    $j("#nav li").hover(
        function(){ $j("ul", this).fadeIn("fast"); }, 
        function() { } 
    );
    if (document.all) {
        $j("#nav li").hoverClass ("sfhover");
    }
    $j("#audiencetypes li").hover(
        function(){ $j("div.audiencecontent", this); },
        function() { }
    );
    if (document.all) {
        $j("#audiencetypes li").hoverClass ("auhover");
    }
});

$j.fn.hoverClass = function(c) {
    return this.each(function(){
        $j(this).hover( 
            function() { $j(this).addClass(c);  },
            function() { $j(this).removeClass(c); }
        );
    });
};