
	/*  Script written by Susan Sparks
	    please do not copy
	*/
	
	d=new Date();
	today=d.getDay();
	thisMonth=d.getMonth();
	thisDate=d.getDate();
	thisYear=d.getFullYear();
	thisHour=d.getHours();
	thisMinute=d.getMinutes();

    switch(today) { //convert day of the week to text
      case 0: 
	today="Sunday";
	break;
      case 1:
	today="Monday";
	break;
      case 2:
	today="Tuesday";
	break;
      case 3:
	today="Wednesday";
	break;
      case 4:
	today="Thursday";
	break;
      case 5:
	today="Friday";
	break;
      case 6:
	today="Saturday";
}


   switch(thisMonth) { //convert month to text
      case 0:
	thisMonth="January";
	break;
      case 1:
	thisMonth="February";
	break;
      case 2:
	thisMonth="March";
	break;
      case 3:
	thisMonth="April";
	break;
      case 4:
	thisMonth="May";
	break;
      case 5:
	thisMonth="June";
	break;
      case 6:
	thisMonth="July";
	break;
      case 7:
	thisMonth="August";
	break;
      case 8:
	thisMonth="September";
	break;
      case 9:
	thisMonth="October";
	break;
      case 10:
	thisMonth="November";
	break;
      case 11:
	thisMonth="December";
}	
	

