$(document).ready(function() {

//Font replacement
  Cufon.replace('h1, h2, h3, #frontpagebox p, .btn a strong, .btn p, #topmenu li a, #footer ul li a, #header ul li a', {hover: true});

//CSS3
  $("#footer ul li:last-child").addClass("last");
  
//Frontpage story hover for IE6
  if ($.browser.msie && $.browser.version == 6 ) {
    $("#frontpagestory p a").hover(function() {
      $(this).addClass("fixingIEhover");
    }, function() {
      $(this).removeClass("fixingIEhover");
    });
  };
  
});
