startList = function() {
  // $('a.mail').each(function(){
  //   $(this).attr('href', mailDecode($(this).attr('href')))
  //   $(this).html(mailDecode($(this).html()))
  // });
  // Google Analytics
  // var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
  // var jsLink = unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E");
  // $("head").append(jsLink);
  // try {
  // var pageTracker = _gat._getTracker("UA-10349279-1");
  // pageTracker._trackPageview();
  // } catch(err) {}
  // Google Analytics END  
}
window.onload = startList;

function mailDecode(mail){
  mail = mail.replace(/[a-zA-Z]/g, function(c){ return String.fromCharCode((c <= 'Z' ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c-26); })
  return mail;
}


