/* Begin nav bar, table-based version. Pure CSS would be better, but has
   cross-browser compatibility problems.  Maybe in the future.
 */

/* */

document.write('<table id="navBar" border="0" cellpadding="0" cellspacing="0" width="100%">'+
	       '<tbody><tr><td valign="top">'+
	       // Begin items
	       '<a href="index.html">&nbsp;HOME&nbsp;</a>|'+
	       '<a href="collective.html">&nbsp;COLLECTIVE&nbsp;</a>|'+
	       '<a href="advisoryboard.html">&nbsp;ADVISORY BOARD&nbsp;</a>|'+
	       '<a href="orders.html">&nbsp;ORDERS&nbsp;</a>|'+
	       '<a href="cfp.html">&nbsp;CFPs&nbsp;</a>|'+
		   '<a href="events.html">&nbsp;EVENTS&nbsp;</a>|'+
	       '<a href="submissions.html">&nbsp;SUBMISSIONS&nbsp;</a>|'+
	       '<a href="sponsors.html">&nbsp;SPONSORS&nbsp;</a>'+
	       // End items
	       '</td></tr></tbody></table>'
	       )

// End of all header stuff - close the function and return to the document
  document.close()
  

