function archiveDropdown() 
{
  if($('#previous img').length && $('#previous-months').length) {
    $('#previous img').click(
      function() {
        $('#previous-months').toggle();
      }
    );
  }
}

function firstLast()  
{  
  $('ul li:first-child').addClass('first');  
  $('ul li:last-child').addClass('last');  
}

function doCufon() 
{
  Cufon.replace("#content h1");
}
doCufon();
jQuery(firstLast);
jQuery(archiveDropdown);
