/*
 * date:	2003-11-16
 * info:	http://inspire.server101.com/js/mb/
 */

var mbW=500;
var mbA,mbT,mbTf,mbSf;
var mbR = [];

function setQL(ql){
	/* find the list to be filled */
	var qlList = document.getElementById('ql');
	
	/* replace enable JS item with a QL item */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "../index.html";
	var newText = document.createTextNode("Quick Links");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	qlList.replaceChild(newChild, document.getElementById("list"));
	qlList = newChild;
	
	/* append the main list to the QL item*/
	var mainList = document.createElement("ul");
	qlList.appendChild(mainList);
	/* append the home page to the main list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/index.html";
	newText = document.createTextNode("Home");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mainList.appendChild(newChild);
	/* append the about page to the main list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/about.html";
	newText = document.createTextNode("About Lexair");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mainList.appendChild(newChild);
	/* append the valve page  to the main list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html";
	newText = document.createTextNode("Valves");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mainList.appendChild(newChild);
	var valveList = newChild;
	/* append the MTA page */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/index.html";
	newText = document.createTextNode("Machine Tool Accessories");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mainList.appendChild(newChild);
	var mtaList = newChild;
	
	/* append the valve list */
	newChild = document.createElement("ul");
	valveList.appendChild(newChild);
	valveList = newChild;
	createValve(valveList);
	
	/* append the mta list */
	newChild = document.createElement("ul");
	mtaList.appendChild(newChild);
	mtaList = newChild;
	createMTA(mtaList);
}
	
function createValve(valveList) {
	/* append the poppet page to the valve list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#Poppet";
	var newText = document.createTextNode("Poppet");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	var poppetList = newChild;
	/* append the TUBE-O-MATIC page to the valve list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#TUBEOMATIC";
	newText = document.createTextNode("TUBE-O-MATIC®");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	var tomList = newChild;
	/* append the Mini 1 page to the valve list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#Mini1";
	newText = document.createTextNode("Mini 1");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	var mini1List = newChild;
	/* append the Hi-Cyclic page to the valve list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#HiCyclic";
	newText = document.createTextNode("Hi-Cyclic®");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	var hicycList = newChild;
	/* append the Shuttle page to the valve list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/s-std-pr.html";
	newText = document.createTextNode("Shuttle");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	/* append the Solenoid Operators page to the valve list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#Solenoid";
	newText = document.createTextNode("Solenoid Operators");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	var solList = newChild;
	/* append the Railcar page to the valve list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/rr-spo-pr.html";
	newText = document.createTextNode("Railcar");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	/* append the Support page to the valve list */
	/*newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-support.html";
	newText = document.createTextNode("Support");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	var vsupportList = newChild;*/
	/* append the Information page to the valve list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-info.html";
	newText = document.createTextNode("Information");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	valveList.appendChild(newChild);
	var vinfoList = newChild;
	
	/* append the poppet list */
	newChild = document.createElement("ul");
	poppetList.appendChild(newChild);
	poppetList = newChild;
	createPoppet(poppetList);
	
	/* append the TOM list */
	newChild = document.createElement("ul");
	tomList.appendChild(newChild);
	tomList = newChild;
	createTOM(tomList);
	
	/* append the mini 1 list */
	newChild = document.createElement("ul");
	mini1List.appendChild(newChild);
	mini1List = newChild;
	createMini1(mini1List);
	
	/* append the hi-cyclic list */
	newChild = document.createElement("ul");
	hicycList.appendChild(newChild);
	hicycList = newChild;
	createHicyc(hicycList);
	
	/* append the solenoid list */
	newChild = document.createElement("ul");
	solList.appendChild(newChild);
	solList = newChild;
	createSol(solList);
	
	/* append the support list */
	/*newChild = document.createElement("ul");
	vsupportList.appendChild(newChild);
	vsupportList = newChild;
	createVSupport(vsupportList);*/
	
	/* append the information list */
	newChild = document.createElement("ul");
	vinfoList.appendChild(newChild);
	vinfoList = newChild;
	createVInfo(vinfoList);
}

function createMTA(mtaList) {
	/* append the Barfeed page to the MTA list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/index.html#Barfeed";
	var newText = document.createTextNode("Barfeed Systems");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mtaList.appendChild(newChild);
	var barfeedList = newChild;
	/* append the Collet Chuck page to the MTA list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/index.html#Chucks";
	newText = document.createTextNode("Collet Chucks");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mtaList.appendChild(newChild);
	var chuckList = newChild;
	/* append the Collet Closer page to the MTA list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/index.html#Closers";
	newText = document.createTextNode("Collet Closers");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mtaList.appendChild(newChild);
	var closerList = newChild;
	/* append the Valve and Pump page to the MTA list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/pumps-pr.html";
	newText = document.createTextNode("Valves and Pumps");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mtaList.appendChild(newChild);

	/* append the Support page to the MTA list */
	/*newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-support.html";
	newText = document.createTextNode("Support");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mtaList.appendChild(newChild);
	var msupportList = newChild;*/
	/* append the Information page to the MTA list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-info.html";
	newText = document.createTextNode("Information");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mtaList.appendChild(newChild);
	var minfoList = newChild;
	
	/* append the barfeed list */
	newChild = document.createElement("ul");
	barfeedList.appendChild(newChild);
	barfeedList = newChild;
	createBarfeed(barfeedList);
	
	/* append the collet chuck list */
	newChild = document.createElement("ul");
	chuckList.appendChild(newChild);
	chuckList = newChild;
	createChuck(chuckList);
	
	/* append the collet closer list */
	newChild = document.createElement("ul");
	closerList.appendChild(newChild);
	closerList = newChild;
	createCloser(closerList);
	
	/* append the support list */
	/*newChild = document.createElement("ul");
	msupportList.appendChild(newChild);
	msupportList = newChild;
	createMSupport(msupportList);*/
	
	/* append the information list */
	newChild = document.createElement("ul");
	minfoList.appendChild(newChild);
	minfoList = newChild;
	createMInfo(minfoList);
}

function createPoppet(poppetList) {
	/* append the DPO page to the poppet list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#DPO";
	var newText = document.createTextNode("(Direct Pilot Operated)");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DPO2NO page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-dpo2no-pr.html";
	newText = document.createTextNode("2-Way N/O");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DPO2NC page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-dpo2nc-pr.html";
	newText = document.createTextNode("2-Way N/C");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DPO3NC page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-dpo3nc-pr.html";
	newText = document.createTextNode("3-Way N/C");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DPO2NCSS page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-dpo2ncss-pr.html";
	newText = document.createTextNode("2-Way N/C Stainless Steel");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DSO page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#DSO";
	newText = document.createTextNode("(Direct Solenoid Operated)");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DSOAGV page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-dso2ncagv-pr.html";
	newText = document.createTextNode("2-Way N/C Air/Gas/Vacuum");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DSOWO page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-dso2ncwo-pr.html";
	newText = document.createTextNode("2-Way N/C Water/Oil");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DCO page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#DCO";
	newText = document.createTextNode("(Direct Cam Operated)");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DCO page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-dco2nc-pr.html";
	newText = document.createTextNode("2-Way N/C");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DIN-SPO page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/index.html#DIN-SPO";
	newText = document.createTextNode("(DIN Solenoid/Pilot Operated)");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the DIN-SPO page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-din-spo2nc-pr.html";
	newText = document.createTextNode("2-Way N/C");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the checki page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-check-pr.html";
	newText = document.createTextNode("Check");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
	
	/* append the poppet options page to the poppet list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/p-options.html";
	newText = document.createTextNode("Poppet Options");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	poppetList.appendChild(newChild);
}

function createTOM(tomList) {
	/* append the DPO page to the TUBE-O-MATIC list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/t-dpo-pr.html";
	var newText = document.createTextNode("Direct Pilot Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	tomList.appendChild(newChild);

	/* append the SPO page to the TUBE-O-MATIC list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/t-spo-pr.html";
	newText = document.createTextNode("Solenoid Pilot Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	tomList.appendChild(newChild);

	/* append the options page to the TUBE-O-MATIC list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/t-options.html";
	newText = document.createTextNode("TUBE-O-MATIC® Options");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	tomList.appendChild(newChild);
}

function createMini1(mini1List) {
	/* append the manually operated page to the Mini 1 list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/m-man-pr.html";
	var newText = document.createTextNode("Manually Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mini1List.appendChild(newChild);

	/* append the mechanically operated page to the Mini 1 list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/m-mech-pr.html";
	newText = document.createTextNode("Mechanically Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mini1List.appendChild(newChild);

	/* append the pilot operated page to the Mini 1 list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/m-po-pr.html";
	newText = document.createTextNode("Pilot Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mini1List.appendChild(newChild);

	/* append the solenoid operated page to the Mini 1 list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/m-so-pr.html";
	newText = document.createTextNode("Solenoid Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	mini1List.appendChild(newChild);
}

function createHicyc(hicycList) {
	/* append the manually operated page to the Hi-Cyclic list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/h-man-pr.html";
	var newText = document.createTextNode("Manually Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	hicycList.appendChild(newChild);

	/* append the mechanically operated page to the Hi-Cyclic list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/h-mech-pr.html";
	newText = document.createTextNode("Mechanically Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	hicycList.appendChild(newChild);

	/* append the pilot operated page to the Hi-Cyclic list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/h-po-pr.html";
	newText = document.createTextNode("Pilot Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	hicycList.appendChild(newChild);

	/* append the solenoid operated page to the Hi-Cyclic list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/h-dso-pr.html";
	newText = document.createTextNode("Solenoid Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	hicycList.appendChild(newChild);

	/* append the magna-cycle page to the Hi-Cyclic list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/h-mag-pr.html";
	newText = document.createTextNode("Magna-Cycle® Self-Reciprocating");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	hicycList.appendChild(newChild);

	/* append the options page to the Hi-Cyclic list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/h-options.html";
	newText = document.createTextNode("Hi-Cyclic® Options");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	hicycList.appendChild(newChild);
}

function createSol(solList) {
	/* append the multi-function page to the solenoid operator list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/sol-mf3-pr.html";
	var newText = document.createTextNode("3-Way Multi-Function");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	solList.appendChild(newChild);

	/* append the explosion-proof page to the solenoid operator list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/sol-ep3-pr.html";
	newText = document.createTextNode("3-Way Explosion-Proof");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	solList.appendChild(newChild);
}

function createVSupport(vsupportList) {
	/* append the troubleshooting page to the support list */
	/*var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-troub.html";
	var newText = document.createTextNode("Troubleshooting");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vsupportList.appendChild(newChild);*/

	/* append the selection tools page to the support list */
	/*newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-select.html";
	newText = document.createTextNode("Selection Tools");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vsupportList.appendChild(newChild);*/

	/* append the manuals page to the support list */
	/*newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-manuals.html";
	newText = document.createTextNode("Manuals");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vsupportList.appendChild(newChild);*/

	/* append the faq page to the support list */
	/*newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-faq.html";
	newText = document.createTextNode("Frequently Asked Questions");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vsupportList.appendChild(newChild);*/
}

function createVInfo(vinfoList) {
	/* append the request info page to the info list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-info.html";
	var newText = document.createTextNode("Request Info");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vinfoList.appendChild(newChild);

	/* append the locator page to the info list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www2.lexairinc.com/locator/index.php";
	newLink.target = "blank";
	newText = document.createTextNode("Distributor Lookup");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vinfoList.appendChild(newChild);

	/* append the literature request page to the info list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-library.html";
	newText = document.createTextNode("Library");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vinfoList.appendChild(newChild);

	/* append the application tips page to the info list */
	/* newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-apptips.html";
	newText = document.createTextNode("Application Tips");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vinfoList.appendChild(newChild);
 */

	/* append the scratch'n'dent sale page to the info list */
	/* newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/valves/v-snd.html";
	newText = document.createTextNode("Scratch and Dent Sale");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vinfoList.appendChild(newChild);
 */

	/* append the contact us page to the info list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/contact.html";
	newText = document.createTextNode("Contact Us");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	vinfoList.appendChild(newChild);
}

function createBarfeed(barfeedList) {
	/* append the Mini Rhinobar page to the barfeed list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/b-mini-pr.html";
	var newText = document.createTextNode("Mini Rhinobar®");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	barfeedList.appendChild(newChild);

	/* append the Rhinobar page to the barfeed list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/b-rhin-pr.html";
	newText = document.createTextNode("Rhinobar®");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	barfeedList.appendChild(newChild);

	/* append the Multi-3000 page to the barfeed list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/b-m3000-pr.html";
	newText = document.createTextNode("Multi-3000");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	barfeedList.appendChild(newChild);
}

function createChuck(chuckList) {
	/* append the full bore page to the collet chuck list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/c-fb-pr.html";
	var newText = document.createTextNode("Full Bore");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	chuckList.appendChild(newChild);

	/* append the Prodyne Servo page to the collet chuck list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/c-pro-pr.html";
	newText = document.createTextNode("Prodyne® Servo");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	chuckList.appendChild(newChild);

	/* append the fixed length page to the collet chuck list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/c-fl-pr.html";
	newText = document.createTextNode("Prodyne® Fixed Length");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	chuckList.appendChild(newChild);

	/* append the direct mount page to the collet chuck list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/c-dm-pr.html";
	newText = document.createTextNode("Direct Mount");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	chuckList.appendChild(newChild);

	/* append the wrench operated page to the collet chuck list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/c-wr-pr.html";
	newText = document.createTextNode("Wrench Operated");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	chuckList.appendChild(newChild);

	/* append the collet page to the collet chuck list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/acc-col-pr.html";
	newText = document.createTextNode("Collets");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	chuckList.appendChild(newChild);

	/* append the collet wrenches page to the collet chuck list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/acc-cw-pr.html";
	newText = document.createTextNode("Collet Wrenches");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	chuckList.appendChild(newChild);
}

function createCloser(closerList) {
	/* append the lpp page to the collet closer list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/cl-lpp-pr.html";
	var newText = document.createTextNode("Low Pressure Pneumatic");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	closerList.appendChild(newChild);

	/* append the lpph page to the collet closer list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/cl-lpph-pr.html";
	newText = document.createTextNode("Pneumatic/Low Pressure Hydraulic");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	closerList.appendChild(newChild);

	/* append the hph page to the collet closer list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/cl-hph-pr.html";
	newText = document.createTextNode("High Pressure Hydraulic");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	closerList.appendChild(newChild);

	/* append the tg page to the collet closer list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/cl-tg-pr.html";
	newText = document.createTextNode("High Pressure Hydraulic Tri-Grip");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	closerList.appendChild(newChild);

	/* append the phsc page to the collet closer list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/cl-phsc-pr.html";
	newText = document.createTextNode("Pneumatic/Hydraulic Step Chuck");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	closerList.appendChild(newChild);

	/* append the collets page to the collet closer list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/acc-col-pr.html";
	newText = document.createTextNode("Collets");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	closerList.appendChild(newChild);

	/* append the collet wrenches page to the collet closer list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/acc-cw-pr.html";
	newText = document.createTextNode("Collet Wrenches");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	closerList.appendChild(newChild);
	
	/* append the disconnect handles page to the collet closer list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/acc-dis-pr.html";
	newText = document.createTextNode("Disconnect Handles");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	closerList.appendChild(newChild);
}

function createMSupport(msupportList) {
	/* append the troubleshooting page to the support list */
	/*var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-troub.html";
	var newText = document.createTextNode("Troubleshooting");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	msupportList.appendChild(newChild);

	/* append the selection tools page to the support list */
	/*newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-select.html";
	newText = document.createTextNode("Selection Tools");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	msupportList.appendChild(newChild);*/

	/* append the manuals page to the support list */
	/*newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-manuals.html";
	newText = document.createTextNode("Manuals");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	msupportList.appendChild(newChild);*/

	/* append the faq page to the support list */
	/*newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-faq.html";
	newText = document.createTextNode("Frequently Asked Questions");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	msupportList.appendChild(newChild);*/
}

function createMInfo(minfoList) {
	/* append the locator page to the info list */
	var newChild = document.createElement("li");
	var newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-info.html";
	var newText = document.createTextNode("Request Info");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);

	/* append the locator page to the info list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-distrib.html";
	newText = document.createTextNode("Distributor Lookup");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);

	/* append the success stories page to the info list */
	/* newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-success.html";
	newText = document.createTextNode("Success Stories");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);
 */

	/* append the literature request page page to the info list */
	/* newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-lit.html";
	newText = document.createTextNode("Literature");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);
 */

	/* append the application tips page to the info list */
	/* newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-apptips.html";
	newText = document.createTextNode("Application Tips");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);
 */

	/* append the scratch'n'dent sale page to the info list */
	/* newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-snd.html";
	newText = document.createTextNode("Scratch and Dent Sale");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);
 */
 
	/* append the shows page to the MTA list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-shows.html";
	newText = document.createTextNode("Shows");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);
	
	/* append the library page to the MTA list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/mta/m-library.html";
	newText = document.createTextNode("Library");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);

	/* append the contact us page to the info list */
	newChild = document.createElement("li");
	newLink = document.createElement("a");
	newLink.href = "http://www.lexairinc.com/contact.html";
	newText = document.createTextNode("Contact Us");
	newLink.appendChild(newText);
	newChild.appendChild(newLink);
	minfoList.appendChild(newChild);
}

function mbSet(m,c) {
if (document.getElementById&&document.createElement) {
	var m=document.getElementById(m);
	m.className=c;
	mbR[mbR.length] = m;
	var i;

	e=m.getElementsByTagName('a');
	if (!mbTf) mbTf=new Function('mbHT();');
	if (!mbSf) mbSf=new Function('mbS(this);');
	for (i=0;i<e.length;i++) {
		e[i].onmouseout=e[i].onblur=mbTf;
		e[i].onmouseover=e[i].onfocus=mbSf;
	}

	m=m.getElementsByTagName('ul');
	for (i=0;i<m.length;i++) {
		mbH(mbL(m[i]));
	}
}}

function mbHA() {
	if (mbA) {
		while (mbA) mbH(mbA);
		mbHE('visible');
	}
}

function mbHT() {
	if (!mbT) mbT=setTimeout('mbHA();', mbW);
}

function mbTC() {
	if (mbT) {
		clearTimeout(mbT);
		mbT=null;
	}
}

function mbS(m) {
	mbTC();
	if (mbA) while (mbA&&m!=mbA&&mbP(m)!=mbA) mbH(mbA);
	else mbHE('hidden');

	if (mbM(m)) {
		mbSH(m,'visible');
		mbA=m;
	}
}

function mbH(m) {
	if (m==mbA) mbA=mbP(m);
	mbSH(m,'hidden');
	mbT=null;
}

function mbL(m) {
	while (m && m.tagName != 'A') m = m.previousSibling;
	return m;
}

function mbM(l) {
	while (l && l.tagName != 'UL') l = l.nextSibling;
	return l;
}

function mbP(m) {
	var p = m.parentNode.parentNode;
	if (p.tagName == 'UL') {
		var i = 0;
		while (i < mbR.length) {
			if (mbR[i] == p) return null;
			i++;
		}
	} else {
		return null;
	}
	return mbL(p);
}

function mbSH(m,v) {
	m.className=v;
	mbM(m).style.visibility=v;
}

function mbHE(v) {
	mbHEV(v,document.getElementsByTagName('select'));
}

function mbHEV(v,e) {
	for (var i=0;i<e.length;i++) e[i].style.visibility=v;
}
