function draw_menu(page) {
	document.writeln(
	"<table width='760' border=0 cellpadding=0 cellspacing=0><tr><td height='20' width='100%' bgcolor='white'></td></tr></table>" +
	"<table width='760' border=0 cellpadding=0 cellspacing=0>" +
	"	<tr height=30>")


	// left indent
	document.writeln(
	"		<!-- left indent -->" +
	"		<td width='20px' class='corner' >&nbsp</td>")

	// HOME
	if (page == "HOME"){
		document.writeln(
		"		<td><img class='menu' src='images/menu/home_on.gif' width=62px height=30px></td>")
	} else {
		document.writeln(
		"		<td><a class='menu' href='index.html'><img class='menu' src='images/menu/home_off.gif' width=62px height=30px></a></td>")
	}

	// PROGRAMS
	if (page == "PROGRAMS"){
		document.writeln(
		"		<td><img class='menu' src='images/menu/programs_on.gif' width=99px height=30px></td>")
	} else {
		document.writeln(
		"		<td><a class='menu' href='programs.html'><img class='menu' src='images/menu/programs_off.gif' width=99px height=30px></a></td>")
	}

	// COACHES
	if (page == "COACHES"){
		document.writeln(
		"		<td><img class='menu' src='images/menu/coaches_on.gif' width=87px height=30px></td>")
	} else {
		document.writeln(
		"		<td><a class='menu' href='coaches.html'><img class='menu' src='images/menu/coaches_off.gif' width=87px height=30px></a></td>")
	}

	// SCHEDULES
	if (page == "SCHEDULES"){
		document.writeln(
		"		<td><img class='menu' src='images/menu/schedules_on.gif' width=103px height=30px></td>")
	} else {
		document.writeln(
		"		<td><a class='menu' href='schedules.html'><img class='menu' src='images/menu/schedules_off.gif' width=103px height=30px></a></td>")
	}

	// EVENTS
	if (page == "EVENTS"){
		document.writeln(
		"		<td><img class='menu' src='images/menu/events_on.gif' width=72px height=30px></td>")
	} else {
		document.writeln(
		"		<td><a class='menu' href='events.html'><img class='menu' src='images/menu/events_off.gif' width=72px height=30px></a></td>")
	}

	// REGISTRATION
	if (page == "REGISTRATION"){
		document.writeln(
		"		<td><img class='menu' src='images/menu/registration_on.gif' width=125px height=30px></td>")
	} else {
		document.writeln(
		"		<td><a class='menu' href='registration.html'><img class='menu' src='images/menu/registration_off.gif' width=125px height=30px></a></td>")
	}

	// CONTACT US
	if (page == "CONTACT US"){
		document.writeln(
		"		<td><img class='menu' src='images/menu/contact_on.gif' width=113px height=30px></td>")
	} else {
		document.writeln(
		"		<td><a class='menu' href='contact_us.html'><img class='menu' src='images/menu/contact_off.gif' width=113px height=30px></a></td>")
	}
	
	// rest of the line
	document.writeln(
	"		<!-- REST OF THE LINE -->" +
	"		<td width='100%' class='corner' >&nbsp</td>" +
	"	</tr>" +
	"</table>") ;

}