/* This script copyrighted by D.A. Rorabaugh, 1999 - momkat@dandello.net. Please keep this notice in place. */
var day="";
var month="";
var myweekday="";
var year="";
newdate = new Date();
mydate = new Date();
var myzone = newdate.getTimezoneOffset();
newtime=newdate.getTime();
newtimea = newtime+(myzone*60*1000);
mydate.setTime(newtimea);
myday = mydate.getDay();
mymonth = mydate.getMonth();
myweekday= mydate.getDate();
weekday= myweekday;
myyear= mydate.getYear();
year = (1900+myyear);
yhours = mydate.getHours();
if (yhours > 11) {mm = " PM" }
else { mm = " AM"; }
if (yhours > 12) { myhours = yhours-12 }
else { myhours = yhours; }
myminutes = mydate.getMinutes();
if (myminutes < 10){ mytime = ":0" + myminutes; }
else { mytime = ":" + myminutes; }
arday = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
armonth = new Array("January ","February ","March ","April ","May ","June ","July ","August ","September ", "October ","November ","December ");
ardate = new Array("0th","1st","2nd","3rd","4th","5th","6th","7th","8th","9th","10th","11th","12th","13th","14th","15th","16th","17th","18th","19th","20th","21st","22nd","23rd","24th","25th","26th","27th","28th","29th","30th","31st");
var washtime = (myhours + mytime+ mm + ", " + arday[myday] +", " + armonth[mymonth] +" "+ardate[myweekday] + ", " + year+", GMT.");

if (mymonth === 11 && myweekday > 13 && myweekday < 27)
	{var xmas = "<p class='center'><img src='pix/greeting.gif' alt='Greetings' /></p>";
	var xmas2 = "<img src='../../pix/greeting.gif' alt='Greetings' style='margin-top:-2em; margin-left:-2em' />";}
else if (mymonth === 11 && myweekday >= 27)
	{ xmas = "<p class='center'><img src='pix/disco.gif' alt='disco' /><br /><img src='pix/newyear.png' alt='Happy New Years' /></p>";
	 xmas2 = "<p style='margin-top:-1em; margin-left:-200px; text-align:center'><img src='../../pix/disco.gif' alt='' /><br /><img src='../../pix/newyear.png' alt='Happy New Years' /></p>";}
else if (mymonth === 0  && myweekday < 7)
	{ xmas = "<p class='center'><img src='pix/disco.gif' alt='' /><br /><img src='pix/newyear.png' alt='Happy New Years' /></p>";
	 xmas2 = "<p style='margin-top:-1em; margin-left:-200px; text-align:center'><img src='../../pix/disco.gif' alt='' /><br /><img src='../../pix/newyear.png' alt='Happy New Years' /></p>";}
else { xmas= ""; xmas2 = "<a href='../../index.shtml'><img src='../../pix/mainani.gif' alt='UFO' /></a>";}
