// JavaScript Document

function goToMonth()
{
  var today = new Date();
  var month = today.getMonth();
  switch (month)
  {
  	case 0: window.location = "../calendar/january.html"; break;
  	case 1: window.location = "../calendar/february.html"; break;
  	case 2: window.location = "../calendar/march.html"; break;
  	case 3: window.location = "../calendar/april.html"; break;
  	case 4: window.location = "../calendar/may.html"; break;
  	case 5: window.location = "../calendar/june.html"; break;
  	case 6: window.location = "../calendar/july.html"; break;
  	case 7: window.location = "../calendar/august.html"; break;
  	case 8: window.location = "../calendar/september.html"; break;
  	case 9: window.location = "../calendar/october.html"; break;
  	case 10: window.location = "../calendar/november.html"; break;
  	case 11: window.location = "../calendar/december.html"; break;
  }
}
