Cufon.replace('h1', { lineHeight: '43px' });

$(document).ready(function(){

  $('.clickable-list li').click(function(){
    window.location = $(this).find('a').attr('href');
  });

  $('#footer-menu li a').each(function(){
    if( window.location.pathname == $(this).attr('href') ){
      $(this).addClass('active');
    }
  });

})
