//Goes to the current month
function gotoMonth()
{
  var currDate = new Date();
  var currMon = currDate.getMonth();
  var mons = Array("jan","feb","mar","apr","may","jun","jul","aug","sep","oct","nov","dec");
  //alert(mons[currMon]);
  var meHere = window.location;
  window.location = meHere + "#" + mons[currMon];
  //alert(meHere);
  
}