$(document).ready(function() {
  $(".nav li a").hover(
    function() {$(this).stop().animate({fontSize:"1.1em"},300);},
    function() {$(this).stop().animate({fontSize:"1em"},300);}
  );
  
  $(".splash").crossfade({random:true,speed:2000,delay:8000});
});