out = new Image();
out.src = "images/bullet.gif";
over = new Image();
over.src = "images/bullet_hl.gif";

function roll(iname, newi)
{document.images[iname].src=newi.src}

function ShowSub(item)
{var phrase="document.all.subMenu" + item + ".style.display";
 if(eval(phrase) == "none")
  {eval(phrase += '=""');roll('Arrow'+ item,Up)}else{eval(phrase += '="none"');roll('Arrow'+ item,Down)}
}


// "todayis()" will display the date in Day, Month Date, Year form.
function todayis()
{
	var now = new Date();
	var Days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var Months = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	document.writeln(Days[now.getDay()] + ", " + Months[now.getMonth()] + " " + now.getDate() +", " + now.getYear())
}

// "MakeW()" This function will print out the W on page.
function MakeW()
{
// This variable tells how many different W's there are to choose from.
var numW = 11;

	var x = Math.floor(Math.random()*numW) +1;
	var info = '<table width="520" border="0" cellpadding="0" cellspacing="0" align="center"><tr><td><img src="images/W' + x + '/W_01.jpg" width="166" height="124" alt="" /></td><td><img src="images/W' + x + '/W_02.jpg" width="175" height="124" alt="" /></td><td><img src="images/W' + x + '/W_03.jpg" width="179" height="124" alt="" /></td></tr><tr><td><img src="images/W' + x + '/W_04.jpg" width="166" height="150" alt="" /></td><td><img src="images/W' + x + '/W_05.jpg" width="175" height="150" alt="" /></td><td><img src="images/W' + x + '/W_06.jpg" width="179" height="150" alt="" /></td></tr><tr><td><img src="images/W' + x + '/W_07.jpg" width="166" height="126" alt="" /></td><td><img src="images/W' + x + '/W_08.jpg" width="175" height="126" alt="" /></td><td><img src="images/W' + x + '/W_09.jpg" width="179" height="126" alt="" /></td></tr></table>';
	document.writeln(info);
}