//#aeaeae

// determine browser
var name=navigator.appName;
var ie="";
var bgColor="";
if (name.indexOf('Microsoft') !== 0) {
  //not ie
  ie=false;
  bgColor="#aeaeae";
}else{
	//is ie  
  ie=true;
  bgColor="#a6a6a6";
}

// write navigation
document.write('<div style="background:'+bgColor+'">');
document.write('<b><a href="index.html">Home</a><br>')
document.write('<a href="services.htm">Services</a><br>')
document.write('<a href="contact.htm">Contact</a><br>')
document.write('<a href="news.htm"><span style="font-size:8pt">Featured Jobs</span></a><br>')
document.write('<a href="ring.htm">Webring</a><br></b><br>')
document.write('<a href="application.htm">Job Application</a><br><br>')

document.write('<p>')
document.write('<a style="color:#ff0000;font-weight:bold" href="equipment.shtm">Equipment List</a><br>')
document.write('</div>');


// set background of the rest of the pane
document.getElementById("leftPane").style.background=bgColor;

