strNav = '<img src="images/hdr.jpg" alt="" title="" usemap="#aberdareLogo" border="0" /><div class="navClip">\
<map name="aberdareLogo" id="aberdareLogo">\
              <area shape="poly" coords="205,32,324,31,342,19,358,24,364,34,484,36,483,49,362,50,345,59,328,50,203,49" href="index.htm" />\
          </map>\
				<img src="images/nav_seperator.gif" alt="" title="" /><a href="who_we_are.htm"><img src="images/nav_who_off.gif" alt="Who We Are" title="Who We Are" border="0" id="who" onMouseover="actNav(this)"  onMouseout="actNav(this)" /></a>\
					<img src="images/nav_seperator.gif" alt="" title="" />\
					<a href="what_we_value.htm"><img src="images/nav_value_off.gif" alt="What We Value" title="What We Value" border="0" id="value" onMouseover="actNav(this)"  onMouseout="actNav(this)" /></a>\
					<img src="images/nav_seperator.gif" alt="" title="" />\
					<a href="what_we_look.htm"><img src="images/nav_look_off.gif" alt="What We Look For" title="What We Look For" border="0" id="look" onMouseover="actNav(this)"  onMouseout="actNav(this)" /></a>\
					<img src="images/nav_seperator.gif" alt="" title="" />\
					<a href="team.htm"><img src="images/nav_team_off.gif" alt="Our Team" title="Our Team" border="0" id="team" onMouseover="actNav(this)"  onMouseout="actNav(this)" /></a>\
					<img src="images/nav_seperator.gif" alt="" title="" />\
					<a href="companies.htm"><img src="images/nav_companies_off.gif" alt="Our Companies" title="Our Companies" border="0" id="companies" onMouseover="actNav(this)"  onMouseout="actNav(this)" /></a>\
					<img src="images/nav_seperator.gif" alt="" title="" />\
					<a href="contact.htm"><img src="images/nav_contact_off.gif" alt="Contact Us" title="Contact Us" border="0" id="contact" onMouseover="actNav(this)"  onMouseout="actNav(this)" /></a>\
					<img src="images/nav_seperator.gif" alt="" title="" />\
				</div>'
document.write(strNav);

if(pageId != '')
	document.getElementById(pageId).src = 'images/nav_'+ pageId +'_on.gif';

function actNav(obj){
	imgPath = obj.src;
	if(pageId != obj.id){
		if(imgPath.substring(imgPath.length-7,imgPath.length)=="off.gif"){
			onImg = imgPath.substring(0,imgPath.length-7) + "on.gif";
			obj.src = onImg;
		} else {
			offImg = imgPath.substring(0,imgPath.length-6) + "off.gif";
			obj.src = offImg;
		}
	}
}