//////////////////////////////////////////////
//  This function prints the navigation 
//  based on the sectionName passed to it.  
//////////////////////////////////////////////

function printNavigation(sectionName)
{
	document.write('    <table height="20" border="0" cellpadding="0" cellspacing="0">\n');
	document.write('    <tr valign="middle">\n');
	if(sectionName == "Home")
	{
		document.write('      <td bordercolor="#777777" bgcolor="#FFCD02"> \n');
	}
	else
	{
		document.write('      <td bordercolor="#777777" onMouseOver="this.bgColor=\'#FFCD02\';" onMouseOut="this.bgColor=\'#e7eaf8\';"> \n');
	}
	document.write('        &nbsp;&nbsp;&nbsp;&nbsp;<a href="/index.html" name="link1" class="Nav" id="link1"><font color="#000000">Home</font></a>&nbsp;&nbsp;	\n');
	document.write('      </td>\n');
	document.write('      <td>|</td>\n');
	if(sectionName == "Chapter")
	{
		document.write('      <td bordercolor="#777777" bgcolor="#FFCD02"> \n');
	}
	else
	{
		document.write('      <td bordercolor="#777777" onMouseOver="this.bgColor=\'#FFCD02\';" onMouseOut="this.bgColor=\'#e7eaf8\';">\n');
	}
	document.write('				&nbsp;&nbsp;<a href="/chapter/index.html" name="link2" class="Nav" id="link2" onMouseOver="MM_showMenu(window.mm_menu_0413143100_0,-6,18,null,\'link2\')" onMouseOut="MM_startTimeout();"><font color="#000000">Chapter</font></a>&nbsp;&nbsp;	</td>\n');
	document.write('      <td>|</td>\n');
	if(sectionName == "Public Info")
	{
		document.write('      <td bordercolor="#777777" bgcolor="#FFCD02"> \n');
	}
	else
	{
		document.write('      <td bordercolor="#777777" onMouseOver="this.bgColor=\'#FFCD02\';" onMouseOut="this.bgColor=\'#e7eaf8\';"> \n');
	}
	document.write('        &nbsp;&nbsp;<a href="/public_info/index.html" name="link3" class="Nav" id="link3" onMouseOver="MM_showMenu(window.mm_menu_0413144058_0,-6,18,null,\'link3\')" onMouseOut="MM_startTimeout();"><font color="#000000">Public Info</font></a>&nbsp;&nbsp;	</td>\n');
	document.write('      <td >|</td>\n');
	if(sectionName == "Member Services")
	{
		document.write('      <td bordercolor="#777777" bgcolor="#FFCD02"> \n');
	}
	else
	{
		document.write('      <td bordercolor="#777777" onMouseOver="this.bgColor=\'#FFCD02\';" onMouseOut="this.bgColor=\'#e7eaf8\';"> \n');
	}
	document.write('        &nbsp;&nbsp;<a href="/member_services/index.html" name="link4" class="Nav" id="link4" onMouseOver="MM_showMenu(window.mm_menu_0413145308_0,-6,18,null,\'link4\')" onMouseOut="MM_startTimeout();"><font color="#000000">Member Services</font></a>&nbsp;&nbsp;	</td>\n');
	document.write('      <td >|</td>\n');
	if(sectionName == "AIA Documents")
	{
		document.write('      <td bordercolor="#777777" bgcolor="#FFCD02"> \n');
	}
	else
	{
		document.write('      <td bordercolor="#777777" onMouseOver="this.bgColor=\'#FFCD02\';" onMouseOut="this.bgColor=\'#e7eaf8\';">\n');
	}
	document.write('				&nbsp;&nbsp;<a href="/contract_documents/contract_documents.html" class="Nav"><font color="#000000">AIA Documents</font></a>&nbsp;&nbsp;	</td>\n');
	document.write('      <td >|</td>\n');
	if(sectionName == "Resources")
	{
		document.write('      <td bordercolor="#777777" bgcolor="#FFCD02"> \n');
	}
	else
	{
		document.write('      <td bordercolor="#777777" onMouseOver="this.bgColor=\'#FFCD02\';" onMouseOut="this.bgColor=\'#e7eaf8\';"> \n');
	}
	document.write('        &nbsp;&nbsp;<a href="/resources/index.html" name="link8" class="Nav" id="link5" onMouseOver="MM_showMenu(window.mm_menu_0413150223_0,-6,18,null,\'link8\')" onMouseOut="MM_startTimeout();"><font color="#000000">Resources</font></a>&nbsp;&nbsp; \n');
	document.write('      </td>\n');
	document.write('      <td >|</td>\n');
	if(sectionName == "Events")
	{
		document.write('      <td bordercolor="#777777" bgcolor="#FFCD02"> \n');
	}
	else
	{
		document.write('      <td bordercolor="#777777" onMouseOver="this.bgColor=\'#FFCD02\';" onMouseOut="this.bgColor=\'#e7eaf8\';"> \n');
	}
	document.write('        &nbsp;&nbsp;<a href="/events/index.html" name="link6" class="Nav" id="link6" onMouseOver="MM_showMenu(window.mm_menu_0413150551_0,-6,18,null,\'link6\')" onMouseOut="MM_startTimeout();"><font color="#000000">Events</font></a>&nbsp;&nbsp; </td>\n');
	document.write('      <td >|</td>\n');
	if(sectionName == "Contact")
	{
		document.write('      <td bordercolor="#777777" bgcolor="#FFCD02"> \n');
	}
	else
	{
		document.write('      <td bordercolor="#777777" onMouseOver="this.bgColor=\'#FFCD02\';" onMouseOut="this.bgColor=\'#e7eaf8\';"> \n');
	}
	document.write('        &nbsp;&nbsp;<a href="/contact/index.html" name="link7" class="Nav" id="link7" onMouseOver="MM_showMenu(window.mm_menu_0413150657_0,-6,18,null,\'link7\')" onMouseOut="MM_startTimeout();"><font color="#000000">Contact</font></a>&nbsp;&nbsp; </td>\n');
	document.write('    </tr>\n');
	document.write('    </table>\n');
}
