//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("protectors", "Drilltec Protectors", "Thread protectors",  null, null);
	menu.addItem("packaging", "Packaging and Lifting Systems", "Packaging and Lifting",  null, null);
	menu.addItem("reclamation", "Reclamation and Disposal", "Reclamation",  null, null);
	menu.addItem("stabbingguide", "Stabbing Guides", "Stabbing Guides",  null, null);
	menu.addItem("marine", "Marine Division", "Marine Division",  null, null);

	menu.addSubItem("protectors", "ACT", "ACT",  "http://www.drilltec.com/protectors/acttm.html", "");
	menu.addSubItem("protectors", "ESP-S", "ESP-S",  "http://www.drilltec.com/protectors/esp-s.htm", "");
	menu.addSubItem("protectors", "STP", "STP",  "http://www.drilltec.com/protectors/stptm.html", "");
	menu.addSubItem("protectors", "SSP", "SSP",  "http://www.drilltec.com/protectors/ssp.htm", "_blank");
	menu.addSubItem("protectors", "TJP", "TJP",  "http://www.drilltec.com/protectors/tjp.html", "_blank");
	menu.addSubItem("protectors", "Linepipe Protectors", "Line Pipe Protectors",  "http://www.drilltec.com/protectors/line_pipe.htm", "_blank");
	
        
        	menu.addSubItem("packaging", "RAP", "RAP",  "http://www.drilltec.com/rap/rap1.htm", "");
	menu.addSubItem("packaging", "ECONO RAP", "econo rap",  "http://www.drilltec.com/rap/econo_rap.htm", "");
	menu.addSubItem("packaging", "LE-RAP", "le-rap",  "http://www.drilltec.com/rap/drilltec_leraptm.htm", "");
	menu.addSubItem("packaging", "CUSTOM", "custom",  "http://www.drilltec.com/rap/custom_rap.htm", "");
	menu.addSubItem("packaging", "STLS Lifting System", "stls lifting system",  "http://www.drilltec.com/lifting/drilltec_stls.htm", "");
	

	menu.addSubItem("reclamation", "Drilltec Reclamation Services", "Reclamation",  "http://www.drilltec.com/reclamation/dramatic_savings_on_protectors.htm", "");

	menu.addSubItem("stabbingguide", "Stabbing Guides", "Stabbing Guides",  "http://www.drilltec.com/stabbingguides/sg.html", "");
	
        
        menu.addSubItem("marine", "Marine Division", "Drilltec Marine Division",  "http://www.drilltec.com/protectors/marine_division.htm", "");
	

	menu.showMenu();
}