function displayLeftNav(currentNav) {
	navArray = new Array('Home','Religion','Ethics','Poetry','Mailbag','Music','Chess','Links');
	hoverArray=new Array(	'Go to this site\'s Home Page', 
				'Read my books and articles on religion',
				'Read my writings on ethics',
				'Read my poetry',
				'Read my correspondence with visitors to this site',
				'Listen to my piano playing, and play with some interactive music instruction', 
				'Play my chess computer and enjoy some free chess lessons',
				'Visit other interesting web sites');
	urlArray = new Array(
		GLOBAL_base+'index.html',
		GLOBAL_base+'religion/index.html', 
		GLOBAL_base+'ethics/index.html',
		GLOBAL_base+'poetry/index.html',
		GLOBAL_base+'mailbag/index.html',
		GLOBAL_base+'music/index.html',
		GLOBAL_base+'chess/indexfromhome.html',
		GLOBAL_base+'links/index.html');
	iconArray = new Array(
		GLOBAL_base+'images/house.png',
		GLOBAL_base+'images/book_open.png',
		GLOBAL_base+'images/award_star_bronze_3.png', 
		GLOBAL_base+'images/script.png',
		GLOBAL_base+'images/email.png',
		GLOBAL_base+'images/music.png', 
		GLOBAL_base+'images/KBs.ico',
		GLOBAL_base+'images/link.png');
			
	document.write('<td width="10%" rowspan="9999" valign="top"><table><tr>') // Added 11/25/07 for FireFox		
 	document.write(
		'<td align="left" valign="top" width="100%" rowspan="9999" class="ScreenOnly">'+
			'<table border="1">');

	for(i=0; i < navArray.length; i++) {
		document.write('<tr>');
		/*
		if(navArray[i] == currentNav) {
			document.write('<td bgcolor="#9999FF" class="bodybold"><a href="' + urlArray[i] + '">' + navArray[i] + '</a></td>');
		}
		else {
			document.write('<td class="bodybold"><a href="' + urlArray[i] + '">' + navArray[i] + '</td>');
		}
		*/

		
		if(navArray[i] == currentNav) {
			document.write('<td bgcolor="#a5a5a5"><span class="buttonsCurr"><a href="' + urlArray[i] + '" title="This is the current page."><img src="' + iconArray[i] + '" alt="" />' + navArray[i] + '</a></span></td>');
		}
		else {
			document.write('<td bgcolor="#f5f5f5"><span class="buttons"><a href="' + urlArray[i] + '" title="' + hoverArray[i] + '"><img src="' + iconArray[i] + '" alt="" />' + navArray[i] + '</a></span></td>');
		}

// document.write('<td>test</td');
		
		document.write('</tr>');
	}
	document.write('<tr><td align="center">');
	document.write(
		'<a href="http://www.notinourname.net/"><img src="'
		+ GLOBAL_base + 'images/nowar.jpg" '
		+ 'title="Not in Our Name: No War Against the World!" '
		+ 'alt="Not in Our Name: No War Against the World!"></a>');
	document.write('</td></tr>');

	document.write('<tr><td align="center">');
/*
	document.write(
		'<a href="http://www.worldcantwait.org"><img width="100" src="'
		+ GLOBAL_base + 'images/Post_II_Bush_b.jpg" '
		+ 'title="The World Can\'t Wait: Prosecute Bush!" '
		+ 'alt="The World Can\'t Wait: Prosecute Bush"></a>');
	document.write('</td></tr>');
*/
	document.write('<tr><td align="center">');
	document.write(
		'<a href="http://www.worldcantwait.org"><img  src="'
		+ GLOBAL_base + 'images/postBush.png" '
		+ 'title="Stop U.S. Terror and Torture!" '
		+ 'alt="Stop U.S. Terror and Torture"></a>');
	document.write('</td></tr>');
	document.write('<tr><td align="center">');

// <!-- Begin PicoSearch Query Box --> 
	document.write('<P><FORM METHOD="GET" ACTION="http://www.picosearch.com/cgi-bin/ts.pl">');
	document.write('<INPUT TYPE="HIDDEN" NAME="index" VALUE="507387">');
	document.write('<TABLE BGCOLOR="WHITE" CELLSPACING=0 CELLPADDING=0 BORDER=0><TR><TD>');
	document.write('<TABLE BGCOLOR="WHITE" CELLSPACING=2 CELLPADDING=0 BORDER=0>');
	document.write('<TR>');
	document.write('	<TD align="center"><INPUT TYPE="TEXT" NAME="query" VALUE="" SIZE="16"></TD>');
	document.write('</TR>');
	document.write('<TR>');
	document.write('	<TD align="center"><nobr><INPUT TYPE="SUBMIT" VALUE="Search site" name="SEARCH"></nobr></TD>');
	document.write('</TR>');
	document.write('</TABLE></TD></TR></TABLE></FORM>');
	
// <!-- End PicoSearch Query Box -->

	document.write('</td></tr>');





	document.write('</table>');
	document.write('</td>');
	
	document.write('</tr></table></td>'); //Added 11/25/07 for FireFox
}				

