﻿Cufon.replace('h1');
Cufon.replace('h2');
Cufon.replace('#sub1');

$(document).ready(function() {

    
    $("#navigation li").hover(
      function () {
          if ($(this).hasClass("on") == false) {
              $(this).addClass("hover");
          }
      },
      function () {
          if ($(this).hasClass("on") == false) {
              $(this).removeClass("hover");
          }
      }
    );

    $("#navigation li").click(
        function (e) {
            e.preventDefault();
            window.location = $(this).find("a").attr("href");
        }
    );

});
