//toplinks //jQuery(function(){ // jQuery(".comLinks").hover(function(){ // $('#nav').toggleClass("hover"); // jQuery(".comLayer").fadeIn(500); // },function(){ // $('#nav').removeClass("hover"); // jQuery(".comLayer").hide(); // }); //}) //main nav jQuery.fn.extend({ allenMenu: function() { $(this).children('ul').children('li').hover( function() { if(!$(this).children('ul').hasClass('focus')) { $(this).addClass('focus'); $(this).children('ul:first').stop(true, true).animate({ height:'show' }, 'fast'); } }, function() { $(this).removeClass('focus'); $(this).children('ul:first').stop(true, true).animate({ height:'hide', opacity:'hide' }, 'slow'); } ); $(this).children('ul').children('li').children('ul').hover( function() { $(this).addClass('focus'); }, function() { $(this).removeClass('focus'); } ); } }); //alert(this); $(document).ready(function() { $('#nav').allenMenu(); }); //end of nav