//	This is a complete rewrite of navbarbody.js.
//	Step 1:	Get the motto line to work


//	The sructure of the navigation bar:
//	Table: centered with width = 100%.  This provides the edge to edge coverage of the elements
//		Row1: 	Logo and Motto: Row background = white
//				The row contains one item returned from logoBar().
//		Row2:	First Navigation Bar: background = white
//				The row contains one item returned from firstNavBar().
//		Row3:	Sub-Navigation Bar: background = dark blue
//				The row contains one item returned from subNavBar().

document.write("<table  border='0' width='100%' cellspacing='0' cellpadding='0' align='center'>");

// Row 1: logo bar
	document.write("<tr bgcolor='white'>");
		document.write("<td>");
			logoBar();
		document.write("</td>");
	document.write("</tr>");

// Row 2 and 3: navigation bars
	drawNavBars()


// The end of the whole navigation bar
document.write("</table>");
