$(document).ready(function() {
  
  $("#header li a").hover(
      function() {
        $(this).stop();
        $(this).animate({opacity: 0.5}, 70);
        $(this).animate({top: "-10"}, 70);
      }, 
      function() {
        $(this).stop();
        $(this).animate({opacity: 1.0}, 100);
        $(this).animate({top: "0"}, 70);
      }
  );

  $("a.fancybox").fancybox();
});
