Team:UCL E/js

From 2013.igem.org

Revision as of 11:10, 20 July 2013 by PhilippBoeing (Talk | contribs)

$(document).ready(function(){

$("ucligem nav a").hover(function(){

     $(this).animate({color:'#73B9FF'},500);
   },function() {
     $(this).animate({color:'#000'},500);
   });


});