
document.write('<div id="headerdiv" class="maindiv" >');
document.write('<a href="index.asp"><img style="margin-top:10px;margin-left:680px;margin-bottom:10px;" alt="BBS Services" src="'+upd+'img/bbs3.gif"/></a>');
document.write('<img alt="Information, Technology and Service Solutions for Business" src="img/bn.bmp" style="padding-top:0px;margin-top:0px;margin-bottom:2px;height:2px;width:100%;"/>');
//document.write('<table style="height:15px;width:100%;"><tr><td class="fw"><a href="index.asp">Home</a></td><td></td><td class="fw"><a href="about.asp">About</a></td><td></td><td class="fw"><a href="advice.asp">Advice</a></td><td></td><td class="fw"><a href="technology.asp">Technology</a></td><td></td><td class="fw"><a href="procurement.asp">Procurement</a></td><td></td><td class="fw"><a href="presence.asp">Presence</a></td><td></td><td class="fw"><a href="service.asp">Outsourcing</a></td><td></td><td class="fw"><a href="careers.asp">Careers</a></td><td></td><td class="fw"><a href="contact.asp">Contact</a></td></tr></table>');
//document.write('<table style="height:15px;width:100%;"><tr><td></td><td class="fw"><a href="index.asp">Home</a></td><td></td><td class="fw"><a href="about.asp">About Us</a></td><td></td><td class="fw"><a href="advice.asp">Advice</a></td><td></td><td class="fw"><a href="software/index.asp">Software</a></td><td></td><td class="fw"><a href="hardware.asp">Hardware</a></td><td></td><td class="fw"><a href="procurement.asp">Procurement</a></td><td></td><td class="fw"><a href="presence.asp">Presence</a></td><td></td><td class="fw"><a href="service.asp">Outsourced</a></td><td></td><td class="fw"><a href="contact.asp">Contact</a></td><td></td></tr></table>');

var numslash=1; //number of slashes after http:(sl)(sl) in address of a page in home directory
var menuarray=new Array();
menuarray[0]=new Array("index.asp","Home");
menuarray[1]=new Array("about.asp","About Us");
menuarray[2]=new Array("advice.asp","Advice");
menuarray[3]=new Array("software/index.asp","Software");
menuarray[4]=new Array("hardware.asp","Hardware");
menuarray[5]=new Array("procurement/index.asp","Procurement");
menuarray[6]=new Array("presence.asp","Presence");
menuarray[7]=new Array("outsourced/index.asp","Outsourced");
menuarray[8]=new Array("contact.asp","Contact");

var wlh=new String(window.location.href);
var i=0;
for(i=0;i<numslash+2;i++)
	{
	wlh=wlh.substr(wlh.indexOf("/")+1,wlh.length);
	}

//deal with child directories
var bud="";
var wlh2=wlh;
while(wlh2.indexOf("/")>-1)
	{
	bud=bud+"../";
	wlh2=wlh2.substr(wlh2.indexOf("/")+1,wlh2.length);
	}

document.write('<table style="height:15px;width:100%;"><tr><td></td>');

for(i=0;i<menuarray.length;i++)
	{
	if(wlh==menuarray[i][0])
		{
		document.write('<td class="fw"><a class="und" href="'+bud+menuarray[i][0]+'">'+menuarray[i][1]+'</a></td><td></td>');
		}
	else
		{
		document.write('<td class="fw"><a href="'+bud+menuarray[i][0]+'">'+menuarray[i][1]+'</a></td><td></td>');
		}
	}
document.write('</tr></table>');


//document.write('<table style="height:15px;width:100%;"><tr><td></td><td class="fw"><a href="index.asp">Home</a></td><td></td><td class="fw"><a href="about.asp">About us</a></td><td></td><td class="fw"><a href="advice.asp">Services</a></td><td></td><td class="fw"><a href="technology.asp">Supplies</a></td><td></td><td class="fw"><a href="software/index.asp">Software</a></td><td></td><td class="fw"><a href="procurement.asp">Discussion</a></td><td></td><td class="fw"><a href="presence.asp">Contact us</a></td><td></td></tr></table>');

