base = {
 decryptEmail: function(str, mto) {
  nstr = "";
  for(a = 0 ; a < str.length ; a++) {
   nstr += String.fromCharCode(str.charCodeAt(a) - 1);
  }
  
  if(mto)
   location.href = 'mailto:' + nstr;
  else
   return nstr;
 },
 
 fade: function(e) {
  if($("#" + e).css("display") == "none") {
   $(".tooltipp").fadeOut();
   $("#" + e).css('top', 5 - $("#" + e).height());
   $("#" + e).fadeIn();
  } else {
   $("#" + e).fadeOut();
  }
 }
}