buttons= [ 'Home', 'Events Calendar', 'Salvage Barn', 'About Us', 'Outreach', 'Who To Book', 'Links', 'Contact Us' ]
href= [ 'index.html',  'http://www.culturalcorridor.org/organization_details.asp?I=128', 'salvagebarn.html', 'board_of_directors.html', 'outreach.html', 'whoto.html', 'links.html', 'contact_us.html' ]
target= ['_self', '_blank', '_self', '_self', '_self', '_blank', '_self', '_self']

document.writeln('<table border="0" cellpadding="0" cellspacing="2" width="123" style="background-color:#f0f0f0">')

for (i=0; i<buttons.length; i++) {
	mylocation=document.location.toString()
	if (mylocation.charAt(mylocation.length-1)=='/') { mylocation= mylocation + "index.html" }
	hrefi=href[i]
	if (mylocation.indexOf(hrefi) == (mylocation.length-hrefi.length)) { highlite=1 } else { highlite=0 }
	
	document.writeln('<tr height="25">')
	document.writeln('<td><a href="'+href[i]+'" target="'+target[i]+'">')
 
	document.writeln('<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">')
	if (highlite) document.writeln('<b>')
	document.writeln(buttons[i])
	if (highlite) document.writeln('</b>')
	document.writeln('</font>')
	document.writeln('</a>')
	document.writeln('</td>')
	document.writeln('</tr>')
}

for (i=0; i<15; i++) {
	document.writeln('<tr height="25">')
	document.writeln('<td ></td>')
	document.writeln('</tr>')
}

document.writeln('<tr height="25">')
document.writeln('<td>')
document.writeln('</td>')



document.writeln('</tr>')



document.writeln('</table>')





















