var color = new Array("yellow", "green", "purple", "orange");

function randomColor(mode) {
var l = color.length;
var rndNum = Math.floor(l*Math.random());
	if (mode == "admin") {
		document.getElementById("randomLogo").src="../images/logo_"+color[rndNum]+".png";
	} else {
		document.getElementById("randomLogo").src="images/logo_"+color[rndNum]+".png";
		document.getElementById("randomMenu").src="images/menu_"+color[rndNum]+".png";	
	}
}

function alertMe() {
	alert("Sign ups for November 9, 2009 begin tommorrow at 12.");	
}

