//MAIN NAVIGATION ARRAY
//drop down from 2 repeated 4 times to provide test content
//NOTE: a * in position2 of the array tells the script to look for a sub-navigation
dataArray = new Array();
dataArray[0] = new Array(new Array("BIOS", "http://www.toshiba-tro.de/subpage/bios.html"),
new Array("Floppy Drive Patch","http://www.toshiba-tro.de/subpage/floppy.html"),
new Array("Online User Manuals","http://www.toshiba-tro.de/subpage/manuals.html"),
new Array("Portables, Desktop, etc.","http://www.toshiba-tro.de/subpage/drivers.html"),
new Array("Server Support","http://server.toshiba-tro.de/"));

dataArray[1] = new Array(new Array("Windows NT","http://www.toshiba-tro.de/subpage/wnt.html"),
new Array("Windows 2000","http://www.toshiba-tro.de/subpage/w2k.html"),
new Array("Unix Based OSs","http://www.toshiba-tro.de/subpage/unix.html"));

dataArray[2] = new Array(new Array("Imprint", "http://www.toshiba-tro.de/subpage/imprint.html"),
new Array("Legal Notice","http://www.toshiba-tro.de/subpage/legalnotice.html"));

dataArray[3] = new Array(new Array("Enviromental Statement 2004", "http://www.toshiba-tro.de/subpage/pdf/Angaben-2002.pdf"),
new Array("Enviromental Statement 2005", "http://www.toshiba-tro.de/subpage/pdf/ue_2005_dttA.pdf"),
new Array("Enviromental Statement 2006", "http://www.toshiba-tro.de/subpage/pdf/ue_2006_dttA.pdf"));

//SUB NAVIGATION ARRAYS
subsarray = new Array(new Array(),new Array(),new Array(),new Array());
subsarray[1][2] = new Array(new Array("Portege","portege.html"),
	new Array("Satellite","satellite.html"),
	new Array("Satellite Pro","satellitepro.html"),
	new Array("Tecra","tecra.html"));
