DIR:/home/dna1981/www/SMB/admin/school/js/ |
Current File : /home/dna1981/www/SMB/admin/school/js/script.js |
// JavaScript Document //Navigation Script $(document).ready(function () { var $nav = $('.NavCtn > ul > li'); $nav.hover( function() { $(this).children('a').addClass('hovered') $('ul', this).stop(true, true).slideDown('slow'); }, function() { $(this).children('a').removeClass('hovered') $('ul', this).slideUp('slow'); } ); }); |