function printSideNav() {
	if (section == "About" ) {
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 10px"><a href="about.php" style="line-height: 18px;" id="current">ABOUT</a><br />');
	}
	else {
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 10px"><a href="about.php" style="line-height: 18px;">ABOUT</a><br />');
	}

	 if (section == "Members" ) {
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 0px"><a href="members.php" style="line-height: 18px;" id="current">MEMBERS</a><br />');
		}
	else {
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 0px"><a href="members.php" style="line-height: 18px;">MEMBERS</a><br />');
	}
	
	if (section == "Join" ) {
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 0px"><a href="join.php" style="line-height: 18px;" id="current">JOIN</a><br />');
		}
	else {
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 0px"><a href="join.php" style="line-height: 18px;">JOIN</a><br />');
		}
	
	if (section == "Forms" ) {		
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 0px"><a href="forms.php" style="line-height: 18px;" id="current">FORMS</a><br />');
		}
	else {
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 0px"><a href="forms.php" style="line-height: 18px;">FORMS</a><br />');
		}

	if (section == "Resources" ) {		
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 0px"><a href="resources.php" style="line-height: 18px;" id="current">RESOURCES</a><br />');
		}
	else {
		document.write('<div style="padding-top: 10px; padding-right: 0px; padding-left: 0px"><a href="resources.php" style="line-height: 18px;">RESOURCES</a><br />');
		}

}
//END--------------------------------
