<!--
/*
CREATE SOURCE ARRAY
*/
var conID = 0;
var conTitle = 1;
var conLink = 2;
var conParent = 3;
var conIsParent = 4;
var conIsActive = 5;

function CreateArray(ID,Title,Link,Parent,IsParent,IsActive) {
	arrSource[ID] = new Array(ID,Title,Link,Parent,IsParent,IsActive);
}

var arrSource = new Array();
CreateArray(0,"Home","default.asp","root",true,true);
CreateArray(1,"The Company","TheCompany.html",0,true,true);
CreateArray(2,"Our Capabilities","OurCapabilities.html",0,true,true);
CreateArray(3,"Our Work","OurWork.html",0,true,true);
CreateArray(4,"Mobile Laboratory","MobileLab.html",12,false,true);
CreateArray(5,"About","TheCompany.html",1,false,true);
CreateArray(6,"Corporate Facts","CorporateFacts.html",1,false,true);
CreateArray(7,"Job Opportunities","jobopportunities.html",1,false,true);
CreateArray(8,"Compressed Gas Cylinders","CompressedGas.html",2,false,true);
CreateArray(9,"Biological and Chemical Weapons","BioChem.html",2,false,true);
CreateArray(10,"Radioactive Materials","Radioactive.html",2,false,true);
CreateArray(11,"Transportation Issues","Transportation.html",2,false,true);
CreateArray(12,"Equipment","Equipment.html",2,true,true);
CreateArray(13,"Valkyr Mark III","MarkIII.html",12,false,true);
CreateArray(14,"Valkyr Mark IV","MarkIV.html",12,false,true);
CreateArray(15,"Transport Overpacks","TransportOverpack.html",12,false,true);
CreateArray(16,"Storage Overpacks","StorageOverpacks.html",12,false,true);
CreateArray(17,"Remote Bung Opener","BungOpener.html",12,false,true);
CreateArray(18,"Wet Scrubber","WetScrubber.html",12,false,true);
CreateArray(19,"Valve Sampling System","ValveSampling.html",12,false,true);
CreateArray(20,"Success Story: Smiths Junkyard","smiths.html",3,false,true);
CreateArray(21,"CNN Covers IES in the News","cnn.html",3,false,true);
CreateArray(22,"Getting to the Hart of the Matter","Hart.html",3,false,true);
CreateArray(23,"Pentaborane","Penta.html",3,false,true);
CreateArray(24,"Chemical List","ChemList.html",3,false,true);
CreateArray(25,"Clients Speak Out","clientpage.html",3,false,true);
CreateArray(26,"Phoenix-class CMD","Phoenix.html",12,false,true);
CreateArray(27,"BioChem 1","biochem1.html",12,false,true);
CreateArray(28,"Chlorine","chlorine.html",3,false,true);
CreateArray(29,"Uranium Hexafluoride","uf6.html",3,false,true);
CreateArray(30,"Hydrogen Cyanide","hydrogen_cyanide.html",3,false,true);
//-->