// JavaScript Document
var mnth;
function mnthOffset()
{
var now = new Date();
mnth = now.getMonth();
//document.write(mnth);
//January offset to give 5th array (starting at 0, so 4) with Sept starting the season with zero.
var mOffset = new Array (4,5,6,7,8,9,10,11,0,1,2,3);
mnth = mOffset[mnth];
//document.write(mnth);
return mnth;
}
