﻿Cufon.replace('h3');
$(document).ready(function() {
  Cufon.now();
  $('.contact.mail').each(function() {
    $(this).attr('onclick', 'ltcm(\'pdlowr=' + $(this).attr('rel') + '\');');
    $(this).html(ucmstr($(this).attr('rel')));
    $(this).attr('rel','');
  });
  $('#menu').localScroll();
  $('#menu a').click(function() {
    $('#menu li').removeClass('active');
    $(this).parent().addClass('active');
  });
});
function ucmstr(s) {
  var n = 0;
  var r = '';
  for (var i = 0; i < s.length; i++) {
    n = s.charCodeAt(i);
    if (n >= 8364) n = 128;
    r += String.fromCharCode(n - 3);
  }
  return r;
}
function ltcm(s) {
  location.href = ucmstr(s);
}
