var navContent = "";

////////////////////////////////////////////////////////////

<!-- Main Navigation - About the Chorus -->

navContent += "<ul>";

if(activeButtons[0]!="about_ourstory")
	navContent += "<li><a href=\"about_ourstory.php\">Our Story</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_ourstory.php\">Our Story</a></li>";
	
if(activeButtons[0]!="about_members")
	navContent += "<li><a href=\"about_members.php\">Meet the Members</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_members.php\">Meet the Members</a></li>";

if(activeButtons[0]!="about_photos")
	navContent += "<li><a href=\"about_photos.php\">Photo Gallery</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_photos.php\">Photo Gallery</a></li>";
	
if(activeButtons[0]!="about_outreach")
	navContent += "<li><a href=\"about_outreach.php\">Community Outreach</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_outreach.php\">Community Outreach</a></li>";

if(activeButtons[0]!="about_staff")
	navContent += "<li><a href=\"about_staff.php\">BGMC Staff</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_staff.php\">BGMC Staff</a></li>";

if(activeButtons[0]!="about_board")
	navContent += "<li><a href=\"about_board.php\">Board of Directors</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_board.php\">Board of Directors</a></li>";

if(activeButtons[0]!="about_joining")
	navContent += "<li><a href=\"about_joining.php\">Joining the Chorus</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_joining.php\">Joining the Chorus</a></li>";

if(activeButtons[0]!="about_volunteering")
	navContent += "<li><a href=\"about_volunteering.php\">Volunteering</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_volunteering.php\">Volunteering</a></li>";

if(activeButtons[0]!="about_organizations")
	navContent += "<li><a href=\"about_organizations.php\">Other Organizations</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"about_organizations.php\">Other Organizations</a></li>";
	
if(activeButtons[0]!="about_contact")
	navContent += "<li><a href=\"contact.php\">Contact</a></li>";
else
	navContent += "<li id=\"nav2current\"><a href=\"contact.php\">Contact</a></li>";

navContent += "</ul>";

////////////////////////////////////////////////////////////

document.write(navContent);