function printmenu(index)
// A function to print the menu and make changes and linking so easy :-)
{
document.write("<table border=0 cellpadding=0 cellspacing=0 width=650>");
document.write("<tr><td width=10></td>");

// Get Involved Page
if (index != 0)
{	document.write("<td><a href=\"involved.htm\" onmouseover=\"document.involved.src='images/Nav/involved_on.gif'\"");
	document.write("onmouseout=\"document.involved.src='images/Nav/involved.gif'\">");
	document.write("<img src=\"images/Nav/involved.gif\" border=0 name=\"involved\"></a></td>");
} else {
	document.write("<td><img src=\"images/Nav/involved_on.gif\" border=0></td>");
}
document.write("<td width=1 bgcolor='#878787'></td>");

// About Us Page
if (index == 1)
{
	document.write("<td><img src=\"images/Nav/about_on.gif\" border=0></td>");
} else {
	document.write("<td><a href=\"about.htm\" onmouseover=\"document.about.src='images/Nav/about_on.gif'\"");
	document.write("onmouseout=\"document.about.src='images/Nav/about.gif'\">");
	document.write("<img src=\"images/Nav/about.gif\" border=0 name=\"about\"></a></td>");
}
document.write("<td width=1 bgcolor='#878787'></td>");

// Progress Page
if (index == 2)
{
	document.write("<td><img src=\"images/Nav/progress_on.gif\" border=0></td>");
} else {
	document.write("<td><a href=\"progress.cgi\" onmouseover=\"document.progress.src='images/Nav/progress_on.gif'\"");
	document.write("onmouseout=\"document.progress.src='images/Nav/progress.gif'\">");
	document.write("<img src=\"images/Nav/progress.gif\" border=0 name=\"progress\"></a></td>");
}
document.write("<td width=1 bgcolor='#878787'></td>");
				 
// News Page
if (index == 3)
{
	document.write("<td><img src=\"images/Nav/news_on.gif\" border=0></td>");
} else {
	document.write("<td><a href=\"news.htm\" onmouseover=\"document.news.src='images/Nav/news_on.gif'\"");
	document.write("onmouseout=\"document.news.src='images/Nav/news.gif'\">");
	document.write("<img src=\"images/Nav/news.gif\" border=0 name=\"news\"></a></td>");
}
document.write("<td width=1 bgcolor='#878787'></td>");

// Who's Helping? Page
if (index == 4)
{
	document.write("<td><img src=\"images/Nav/whos_on.gif\" border=0></td>");
} else {
	document.write("<td><a href=\"who.htm\" onmouseover=\"document.whos.src='images/Nav/whos_on.gif'\"");
	document.write("onmouseout=\"document.whos.src='images/Nav/whos.gif'\">");
	document.write("<img src=\"images/Nav/whos.gif\" border=0 name=\"whos\"></a></td>");
}
document.write("<td width=1 bgcolor='#878787'></td>");

// Volunteer Page
if (index == 5)
{
	document.write("<td><img src=\"images/Nav/volunteer_on.gif\" border=0></td>");
} else {
	document.write("<td><a href=\"volunteer.htm\" onmouseover=\"document.volunteer.src='images/Nav/volunteer_on.gif'\"");
	document.write("onmouseout=\"document.volunteer.src='images/Nav/volunteer.gif'\">");
	document.write("<img src=\"images/Nav/volunteer.gif\" border=0 name=\"volunteer\"></a></td>");
}
document.write("<td width=1 bgcolor='#878787'></td>");

// Recycle Page
if (index == 6)
{
	document.write("<td><img src=\"images/Nav/recycle_on.gif\" border=0></td>");
} else {
	document.write("<td><a href=\"recycle.htm\" onmouseover=\"document.recycle.src='images/Nav/recycle_on.gif'\"");
	document.write("onmouseout=\"document.recycle.src='images/Nav/recycle.gif'\">");
	document.write("<img src=\"images/Nav/recycle.gif\" border=0 name=\"recycle\"></a></td>");
}
document.write("<td width=1 bgcolor='#878787'></td>");

// Store Page
if (index == 7)
{
	document.write("<td><img src=\"images/Nav/store_on.gif\" border=0></td>");
} else {
	document.write("<td><a href=\"store.htm\" onmouseover=\"document.store.src='images/Nav/store_on.gif'\"");
	document.write("onmouseout=\"document.store.src='images/Nav/store.gif'\">");
	document.write("<img src=\"images/Nav/store.gif\" border=0 name=\"store\"></a></td>");
}
document.write("<td width=1 bgcolor='#878787'></td>");

// Photo Page
if (index == 8)
{
	document.write("<td><img src=\"images/Nav/photo_on.gif\" border=0></td>");
} else {
	document.write("<td><a href=\"photo.htm\" onmouseover=\"document.photo.src='images/Nav/photo_on.gif'\"");
	document.write("onmouseout=\"document.photo.src='images/Nav/photo.gif'\">");
	document.write("<img src=\"images/Nav/photo.gif\" border=0 name=\"photo\"></a></td>");
}
document.write("<td width=10></td></tr></table>");
}
