Sha256: c9965f6bc3f631f9acfaa30ae8de2f1df727e54aa4b93057e24c4bc5f7c7f0b1
Contents?: true
Size: 572 Bytes
Versions: 9
Compression:
Stored size: 572 Bytes
Contents
function initMenu() { $('.menu ul').hide(); $('.menu li a').click( function() { $(this).next().slideToggle('normal'); } ); //Logo menu for current subject //Full Caption Sliding (Hidden to Visible) $('.logo_grid.logo_full').hover( function() { $(".logo_menu", this).stop().animate({top:'101px'},{queue:false,duration:160}); }, function() { $(".logo_menu", this).stop().animate({top:'1119px'},{queue:false,duration:160}); }); } function expandSubMenu(id) { $('#' + id + '_menu').next().show(); } $(document).ready(function() { initMenu(); });
Version data entries
9 entries across 9 versions & 2 rubygems