if (document.images) {
	buttons01on = new Image();
	buttons01on.src = "/images/buttons_on_01.gif";
	buttons02on = new Image();
	buttons02on.src = "/images/buttons_on_02.gif";
	buttons03on = new Image();
	buttons03on.src = "/images/buttons_on_03.gif";
	buttons04on = new Image();
	buttons04on.src = "/images/buttons_on_04.gif";
	buttons05on = new Image();
	buttons05on.src = "/images/buttons_on_05.gif";
	buttons06on = new Image();
	buttons06on.src = "/images/buttons_on_06.gif";
	buttons01off = new Image();
	buttons01off.src = "/images/buttons_01.gif";
	buttons02off = new Image();
	buttons02off.src = "/images/buttons_02.gif";
	buttons03off = new Image();
	buttons03off.src = "/images/buttons_03.gif";
	buttons04off = new Image();
	buttons04off.src = "/images/buttons_04.gif";
	buttons05off = new Image();
	buttons05off.src = "/images/buttons_05.gif";
	buttons06off = new Image();
	buttons06off.src = "/images/buttons_06.gif";
}
	
function buttonOn(button) {
	if (document.images) eval("document." + button + ".src = " + button + "on.src");
}
function buttonOff(button) {
	if (document.images) eval("document." + button + ".src = " + button + "off.src");
}

function credits() {
	alert("Here's where the credits go");
}

function eventWin(id) {
	window.open("/news/event.php?id=" + id,"eventWin","width=300,height=220,scrollbars=yes");
}
function newsWin(id) {
	window.open("/news/news.php?id=" + id,"newsWin","width=450,height=320,scrollbars=yes");
}