Team:UNITN-Trento/JS/Subs/Header
From 2013.igem.org
//Javascript here $(document).ready(function() {
//Open the submenu $("#tn-menu li").mouseenter(function(e) { e.preventDefault(); $(this).children("ul").slideDown(); });
//Close the submenu $("#tn-menu li").mouseleave(function(e) { e.preventDefault(); $(this).children("ul").slideUp(); });
});