$(document).ready(function(){

  Cufon.replace('h1');
  Cufon.replace('#mainnav > li > a');
  Cufon.replace('.recent-blog-posts-view-link a');
  Cufon.replace('.menu h2');

  $('#mainnav li ul').hover(function(){
    $(this).parent().find('a').addClass('current'); 
  }, function(){
    $(this).parent().find('a').removeClass('current');
  });
  
  $('#mainnav li').hover(function(){
    Cufon.replace('#mainnav > li > a');
  });
  
  $('#mainnav li ul').hover(function(){
    Cufon.replace('#mainnav > li > a');
  });
  
  $('#switches .tools').click(function(){
    $('#howtos, #downloads').hide();
    $('#tools').show();
    $('#switches .current').removeClass('current');
    $(this).addClass('current');
  });
  
  $('#switches .howtos').click(function(){
    $('#tools, #downloads').hide();
    $('#howtos').show();
    $('#switches .current').removeClass('current');
    $(this).addClass('current');
  });

  $('#switches .downloads').click(function(){
    $('#tools, #howtos').hide();
    $('#downloads').show();
    $('#switches .current').removeClass('current');
    $(this).addClass('current');
  });
  
  $('.recent-blog-posts-view-link a').html('View More');

});
