var $j = jQuery.noConflict();
    $j(document).ready(function(){
        var timer;
        $j("#menu-top-nav li").hover(function(){
                 $j(this).addClass("hover");
                 $j(this).children('.sub-menu').fadeIn();
            }, function(){
                $j(this).removeClass("hover");
                $j(this).children('.sub-menu').fadeOut();
 
           });
     $j('.nolink > a').removeAttr('href');
        });        
