function side_menu(page)
// Prints the side menu
{
	// Array for the images and pages
	names = new Array("home", "about", "local", "events", "wnew", "supporters", "volunteer", "teacher");

	// Print the top of the menu
	document.write("<table border=0 cellpadding=0 cellspacing=0>");
	document.write("<tr><td><img src=\"images/layout/menu_top.gif\" border=0></td></tr>");
	document.write("<tr><td><img src=\"images/layout/menu_top_white.gif\" border=0></td></tr>");
	
	for(i=0; i<8; i++)
	{
		if (i!=page)
		{
			document.write("<tr><td><a href=\"" + names[i] + ".htm\" onmouseover=\"document.");
			document.write(names[i] + ".src='images/layout/menu_" + names[i] + "_over.gif'\" ");
			document.write("onmouseout=\"document." + names[i] + ".src='images/layout/menu_" + names[i] + ".gif'\">");
			document.write("<img src=\"images/layout/menu_" + names[i] + ".gif\" border=0 ");
			document.write("name=\"" + names[i] + "\"></a></td></tr>\n");
		} else {
			document.write("<tr><td><img src=\"images/layout/menu_" + names[i] + "_on.gif\" border=0></td></tr>");
		}
		if (i != 7)
		{
			document.write("<tr><td height=1 bgcolor=\"#03663a\"></td></tr>\n");
		}
	}
	document.write("<tr><td><img src=\"images/layout/menu_bottom.gif\" border=0></td></tr></table>\n");
}
			
