<!--

/*Create Date objects*/
var start=new Date();
var now=new Date();
var classStart=new Date();

/*Initialize a starting date that doesn't change.  If Letty take a week off this date will need to be changed*/
start.setMonth(0,11);

/*If the date today is more than 42 days away from the start date then true (one day is equal to 86400000 milliseconds)*/
if((now.getTime()-start.getTime())>3628800000)
{
   /*Gets the number of milliseconds between todays date and the start date*/
   var days=(now.getTime()-start.getTime());
   /*Divides results from above and divides by 42 days in milliseconds and rounds up*/
   var num=(Math.ceil(days/3628800000));

   /*Adds 42 days to the start date multiplied by the number of 42 day blocks away from the start date*/ 
   var startDate=start.getTime()+(num*42*24*60*60*1000);
   /*Sets the classStart Date object to the needed date*/
   classStart.setTime(startDate);
}
else  /*This will only happen when today subtracted from the start date is less than 42 days away*/
{
   var startDate=start.getTime()+(42*24*60*60*1000);
   classStart.setTime(startDate);
}

/*Creates an array to get the Month*/
var month=new Array(12);
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";

document.write("<center><font style='font-size: 7.5pt'><b>"+month[classStart.getMonth()]+ "</b></font></center>");
document.write("<center><font style='font-size: 32pt'><b>"+classStart.getDate()+"</b></font></center>");
-->