Team:UPIBI-Mexico/Templates/Main

From 2012.igem.org

Revision as of 20:06, 22 June 2012 by Jfloresu (Talk | contribs)

Header


   <script type="text/javascript">
       $(document).ready(
           function(){
               $("ul.subnav").parent().find("> a").append("");
               $("ul.topnav li").hover(
                   function() {
                       // Hover over
                       $(this).parent().find("ul.subnav").hide();
                       $(this).find("ul.subnav").show();
                       // Hover out
                       $(this).hover(
                           function() {
                           },
                           function(){
                               $(this).find("ul.subnav").hide();
                           }
                       );
                   },
                   function(){
                       $(this).find("ul.subnav").hide();
                   }
               );
           }
       );
   </script>
Retrieved from "http://2012.igem.org/Team:UPIBI-Mexico/Templates/Main"