//  Jquery style 
jQuery().ready(function(){
  /* Smoothscroll trigger START */
  $('a[href*=#]').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
    && location.hostname == this.hostname) {
      var $target = $(this.hash);
      $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
      if ($target.length) {
        var targetOffset = $target.offset().top;
        $('html,body').animate({scrollTop: targetOffset}, {duration: 600});
        return false;
      }
    }
  });
  /* Smoothscroll trigger STOP */
  $('ul.menu li.current-cat a, ul.menu li.current_page_item a, ul.menu li a.active_category').fancyletter();
});
Cufon.replace('ul.menu li.current-cat a span', { fontSize: '48px' });
Cufon.replace('ul.menu li.current_page_item a span', { fontSize: '48px' });
Cufon.replace('ul.menu li a.active_category span', { fontSize: '48px' });


