$(document).ready(function(){
  $(document).pngFix();  
  if($("#events-calendar")) {
    $("#events-calendar").css("cursor","pointer")
    $("#events-calendar").click(function(){
      window.location="/calendar";
    });
  }
  // open in new window
  $('.external').click(function(){
  this.target = "_blank";
  });
});