Team:Alberta/application.js

From 2010.igem.org

Revision as of 16:02, 23 October 2010 by Mwilson (Talk | contribs)

// This file for javascript that we want to include on all pages

$(document).ready(function(){

 // show the drop down list on hover
 $('li.headlink').hover(
   function() { $('ul', this).slideDown(); },
   function() { $('ul', this).slideUp(); }
 );

});