

//This script posts the exact day
//and time you arrived


RightNow = new Date();

var mon;

if (RightNow.getMonth() == 0)
	mon = 'January';
else if (RightNow.getMonth() == 1)
	mon = 'February';
else if (RightNow.getMonth() == 2)
	mon = 'March';
else if (RightNow.getMonth() == 3)
	mon = 'April';
else if (RightNow.getMonth() == 4)
	mon = 'May';
else if (RightNow.getMonth() == 5)
	mon = 'June';
else if (RightNow.getMonth() == 6)
	mon = 'July';
else if (RightNow.getMonth() == 7)
	mon = 'August';
else if (RightNow.getMonth() == 8)
	mon = 'September';
else if (RightNow.getMonth() == 9)
	mon = 'October';
else if (RightNow.getMonth() == 10)
	mon = 'November';
else if (RightNow.getMonth() == 11)
	mon = 'December';

document.write ("<p style=\"font-size:120%;color:#000000;\">" + mon + " " + RightNow.getDate() + ", " + RightNow.getFullYear() + "</p>")
