//var hide_empty_list=true; //uncomment this line to hide empty selection lists
var disable_empty_list=true; //uncomment this line to disable empty selection lists

var onclickaction="goto" //set to "alert" or "goto". Former is for debugging purposes, to tell you the value of the final selected list that will be used as the destination URL. Set to "goto" when below configuration is all set up as desired. 

var newwindow=1 //Open links in new window or not? 1=yes, 0=no.

/////DEFINE YOUR MENU LISTS and ITEMS below/////////////////

addListGroup("chainedmenu", "First-Select");

addOption("First-Select", "Select an Interface", "", 1); //HEADER OPTION
addList("First-Select", "Fibre Channel (FC)", "/interface/fc.php", "FC");
addList("First-Select", "Serial Attached SCSI (SAS)", "/interface/sas.php", "SAS");
addList("First-Select", "SCSI", "/interface/scsi.php", "SCSI"); 
addList("First-Select", "Serial ATA (SATA)", "/interface/sata.php", "SATA");
addList("First-Select", "IDE (Parallel ATA)", "/interface/ide.php", "IDE");
addList("First-Select", "CompactFlash (CF)", "/interface/cf.php", "CF");


//FIBRE CHANNEL OPTIONS
addOption("FC", "Select Performance Level", "", 1); //HEADER OPTION
addList("FC", "350 MB/s", "/interface/fc.php", "FC-350");
addList("FC", "300 MB/s", "/interface/fc.php", "FC-300");

addOption("FC-350", "Select a Form Factor", "", 1); //HEADER OPTION
addList("FC-350", "3.5 Inch", "/product/zeusiops.php");

addOption("FC-300", "Select a Form Factor", "", 1); //HEADER OPTION
addList("FC-300", "2.5 Inch", "/product/zeusiops.php");



//SAS OPTIONS
addOption("SAS", "Select Performance Level", "", 1); //HEADER OPTION
addList("SAS", "350", "/interface/sas.php", "SAS-350");
addList("SAS", "300", "/interface/sas.php", "SAS-300");

addOption("SAS-350", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SAS-350", "3.5 Inch", "/product/zeusiops.php");

addOption("SAS-300", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SAS-300", "2.5 Inch", "/product/zeusiops.php");



//SCSI OPTIONS
addOption("SCSI", "Select Performance Level", "", 1); //HEADER OPTION
addList("SCSI", "350", "/interface/scsi.php", "SCSI-350");
addList("SCSI", "300", "/interface/scsi.php", "SCSI-300");
addList("SCSI", "100", "/interface/scsi.php", "SCSI-100");

addOption("SCSI-350", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SCSI-350", "3.5 Inch", "/product/zeusiops.php");

addOption("SCSI-300", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SCSI-300", "2.5 Inch", "/product/zeusiops.php");

addOption("SCSI-100", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SCSI-100", "2.5 Inch", "/product/mach8iops.php");
addList("SCSI-100", "1.8 Inch", "/product/mach8.php");



//SATA OPTIONS
addOption("SATA", "Select Performance Level", "", 1); //HEADER OPTION
addList("SATA", "Above 200 MB/s", "/interface/sata.php", "SATA-200ABOVE");
addList("SATA", "Above 100 MB/s", "/interface/sata.php", "SATA-100ABOVE");
addList("SATA", "100 MB/s", "/interface/sata.php", "SATA-100");
addList("SATA", "Under 100 MB/s", "/interface/sata.php", "SATA-100BELOW");

addOption("SATA-200ABOVE", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SATA-200ABOVE", "2.5 Inch", "/product/mach16.php");

addOption("SATA-100ABOVE", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SATA-100ABOVE", "Slim SATA", "/product/slimsata.php");
addList("SATA-100ABOVE", "CFast", "/product/cfast.php");

addOption("SATA-100", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SATA-100", "2.5 Inch", "/product/mach8iops.php");
addList("SATA-100", "1.8 Inch", "/product/mach8.php");

addOption("SATA-100BELOW", "Select a Form Factor", "", 1); //HEADER OPTION
addList("SATA-100BELOW", "1 Inch", "/product/mach4.php");



//IDE OPTIONS
addOption("IDE", "Select Performance Level", "", 1); //HEADER OPTION
addList("IDE", "50 MB/s - 100 MB/s", "/interface/ide.php", "IDE-50TO100");
addList("IDE", "Under 50 MB/s", "/interface/ide.php", "IDE-50BELOW");

addOption("IDE-50TO100", "Select a Form Factor", "", 1); //HEADER OPTION
addList("IDE-50TO100", "2.5 Inch", "/product/mach8iops.php");
addList("IDE-50TO100", "1.8 Inch", "/product/mach8.php");
addList("IDE-50TO100", "PCIe", "/product/umssd.php");

addOption("IDE-50BELOW", "Select a Form Factor", "", 1); //HEADER OPTION
addList("IDE-50BELOW", "CF", "/product/cf.php");



//CF OPTIONS
addOption("CF", "Select Performance Level", "", 1); //HEADER OPTION
addList("CF", "50 MB/s - 100 MB/s", "", "CF-50to100");
addList("CF", "Under 50MB/s", "", "CF-30BELOW");

addOption("CF-50to100", "Select a Form Factor", "", 1); //HEADER OPTION
addList("CF-50to100", "1.0 Inch", "/product/mach4cf.php");

addOption("CF-30BELOW", "Select a Form Factor", "", 1); //HEADER OPTION
addList("CF-30BELOW", "CF", "/product/cf.php");



