//<![CDATA[ 
$(document).ready(function(){

   $("#wrapper").addClass("nodisplay");

   $("a.highlight").hover(function(){
      $(this).removeClass("highlight");
      $(this).addClass("highlightUl");
    },function(){
      $(this).removeClass("highlightUl");
      $(this).addClass("highlight");
   });
 });

$(function(){
   $("#wrapper").fadeIn(1000)
});

$(function(){
   var spt = $('span.mailme');
   var at = / at /;
   var dot = / dot /g;
   var addr = $(spt).text().replace(at,"@").replace(dot,".");
              $(spt).after('<a href="mailto:'+addr+'" title="Send an email">'+ addr +'</a>')
              .hover(function(){window.status="Send a letter!";}, function(){window.status="";});
              $(spt).remove();
});
//]]>

