// changed 25.12.2009
(function($) {

 $(document).ready(function() {

  $(".input").focus(function() {
   if ($(this).val() == $(this)[0].title) {
    $(this).val("");
   }
  });

  $(".input").blur(function() {
   if ($(this).val() == "") {
    $(this).val($(this)[0].title);
   }
  });

  $("#content li:last-child").css("margin-right","0px");

 });

})(jQuery);

function obfuscate(coded,title) {
 cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890";
 shift = coded.length;
 link = "";
 for (i=0; i<coded.length; i++) {
  if (cipher.indexOf(coded.charAt(i))==-1) {
   ltr = coded.charAt(i);
   link += (ltr);
  } else {     
   ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length;
   link += (cipher.charAt(ltr));
  }
 }
 if (coded == title) {
  title = link;
 }
 document.write("<a href='mailto:"+link+"'>"+title+"</a>");
}