$(document).ready(function(){
  $('#top_banner').click(function(){
    window.location = '/2008/';
  }).hover(function(){
    $(this).css({cursor: 'pointer'});
  },function(){
    $(this).css({cursor: 'default'});
  });
});
