var hide_empty_list=true;
// var disable_empty_list=true; //uncomment this line to disable empty selection lists

var onclickaction="alert" //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=0 //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", "Car Manufacturer", "", 1); //HEADER OPTION
addList("First-Select", "Ford", "", "Ford");
addList("First-Select", "Volvo", "", "Volvo");

addOption("Ford", "Model", "", 1); //HEADER OPTION
addList("Ford", "Focus", "", "Focus");
addOption("Ford", "Other", "", "Contact For Details");

addOption("Ford-Focus", "Variation", "", 1); //HEADER OPTION
addOption("Ford-Focus", "Focus 1.8 TDCI", "../_cars/ford/dord-focus-1.htm");

addOption("Ford-Other", "contact Us", "EMail Us");

addOption("Volvo", "Model", "", 1); //HEADER OPTION
addList("Volvo", "Big Turbo", "", "Focus");

addOption("Volvo-Big Turbo", "Model", "", 1); //HEADER OPTION
addList("Volvo-Big Turbo", "250BHP", "", "Focus");

