// menu

// DATE

Style = 4; //pick a style from below

/*------------------------------
Style 4: Sat Mar 17, 2000
--------------------------------*/

months = new Array();
months[1] = "January";  months[7] = "July";
months[2] = "February"; months[8] = "August";
months[3] = "March";    months[9] = "September";
months[4] = "April";    months[10] = "October";
months[5] = "May";      months[11] = "November";
months[6] = "June";     months[12] = "December";

months2 = new Array();
months2[1] = "Jan"; months2[7] = "Jul";
months2[2] = "Feb"; months2[8] = "Aug";
months2[3] = "Mar"; months2[9] = "Sep";
months2[4] = "Apr"; months2[10] = "Oct";
months2[5] = "May"; months2[11] = "Nov";
months2[6] = "Jun"; months2[12] = "Dec";

days = new Array();
days[1] = "Sunday";    days[5] = "Thursday";
days[2] = "Monday";    days[6] = "Friday";
days[3] = "Tuesday";   days[7] = "Saturday";
days[4] = "Wednesday";

days2 = new Array();
days2[1] = "Sun"; days2[5] = "Thu";
days2[2] = "Mon"; days2[6] = "Fri";
days2[3] = "Tue"; days2[7] = "Sat";
days2[4] = "Wed";

todaysdate = new Date();
date  = todaysdate.getDate();
day  = todaysdate.getDay() + 1;
month = todaysdate.getMonth() + 1;
yy = todaysdate.getYear();
year = (yy < 1000) ? yy + 1900 : yy;
year2 = 2000 - year; year2 = (year2 < 10) ? "0" + year2 : year2;

dateline = new Array();
dateline[4] = days2[day] + "&nbsp;" + months2[month] + "&nbsp;" + date + ", " + year;

//page=document.title;
//document.write(page);

document.write("<table width=100% cellspacing=0 cellpadding=0 BORDER=0><tr><td align=left width=33% background=menubg.gif>&nbsp;");

if (document.title!="AJs Custom Sound - Disc Jockey - Oshawa Durham And GTA") {
document.write("<a href='javascript:history.go(-1)'>Previous &nbsp;page</a>");
}

document.write("<br></td><td align=center background=servgrey.gif><table cellspacing=0 cellpadding=0 BORDER=0><tr><td><img src='images/mbrdrTL.gif' width='13' height='7'><br></td><td background=images/mbrdrBG.gif><img src='serv.gif' width=548 height=7 BORDER=0><br></td><td><img src=images/mbrdrTR.gif width=2 height=7 BORDER=0><br></td></tr></table><OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' WIDTH=563 HEIGHT=23><PARAM NAME=movie VALUE='AJsMenu2_new.swf'><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF><EMBED src='AJsMenu2_new.swf' quality=high bgcolor=#FFFFFF WIDTH=563 HEIGHT=23 TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'></EMBED></OBJECT><table cellspacing=0 cellpadding=0 BORDER=0><tr><td><img src=images/mbrdrBL.gif width=2 height=7 BORDER=0><br></td><td background=images/mbrdrBG.gif><img src='serv.gif' width=548 height=1 BORDER=0><br></td><td><img src='images/mbrdrBR.gif' width='13' height='7'><br></td></tr></table></td><td width=33% align=right background=menubg.gif>");

document.write(dateline[Style]);

document.write("&nbsp;<br></td></tr></table>");