buttons= [ 'Home', 'Services', 'Projects', 'Contact Info' ]
href= [ 'index.html', 'services.html', 'projects.html', 'contact.html' ]
target= ['_self', '_self', '_self', '_self' ]

document.writeln('<table border="0" cellpadding="0" cellspacing="2" width="120">')

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" valign="top">')
	document.writeln('<td><a href="'+href[i]+'" target="'+target[i]+'">')
 
	document.writeln('<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">')
	document.writeln('<span style="background-color:#ffffff">')
	if (highlite) document.writeln('<b>')
	document.writeln(buttons[i])
	if (highlite) document.writeln('</b>')
	document.writeln('</span>')
	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('</table>')














