//BEGIN
	var NoOffFirstLineMenus=8;     //change this to be the number of main (first level) menu items in the menu
	var LowBgColor='#000000';       //set background colour
	var HighBgColor='#66FFFF';      //set background colour for mouseover
	var FontLowColor='#ffffff';     //set text colour
	var FontHighColor='#0000cc';    //set text colour for mouseover
	var BorderColor='#cc0000';      //set border colour
	var BorderWidth=1;              //0 means no border, then thickness increases from there
	var BorderBtwnElmnts=0;         //distance between elements (menu items) - shouldn't have to change this one though
	var FontFamily="arial";         //set font type
	var FontSize=8;                 //set font size (in pts)
	var FontBold=1;                 //0 means no bold, 1 means bold (for font)
	var FontItalic=0;               //0 means no italic, 1 means italic (for font)
	var MenuTextCentered=1;         //0 means left-align, 1 means centered (for menu items)
	var MenuCentered='center';        //horizontal position of entire menu
	var MenuVerticalCentered='top'; //vertical position of entire menu
	var ChildOverlap=.01;           //between 0 and 1- controls what part of a level is horizontally covered with it's sublevel
	var ChildVerticalOverlap=.1;    //between 0 and 1- controls what part of a level is vertically covered with it's sublevel
	var StartTop=180;                //set vertical offset (distance) from top of page (entire menu)
	var StartLeft=0;               //set horizontal offset (distance) from left of page (entire menu)
	var VerCorrect=0;
	var HorCorrect=0;
	var LeftPaddng=1;               //distance between left side of menu item and border
	var TopPaddng=2;                //distance between top of menu item and border
	var FirstLineHorizontal=1;      //set menu to be vertically or horizontally positioned on page (1=horizontal, 0=vertical)
	var MenuFramesVertical=1;
	var DissapearDelay=1000;         //time in milliseconds a menu's sublevels stay visible after the mouse is no longer over the main menu item
	var TakeOverBgColor=1;
	var FirstLineFrame='navig';
	var SecLineFrame='space';
	var DocTargetFrame='space';
	var WebMasterCheck=0;

// These comments explain what each variable is, and what it controls on the menu.
// The menus are structured like this:
// Menux=new Array("text to show","Link",No of sub elements,element height,element width);
// the height and width only have to be set once for the main menu items (Menu1 has been done)
// and once for each set of sub-menu items (the first sub-menu item in each set)

Menu1=new Array("Home","../index.htm",0,18,90);

Menu2=new Array("Emergencies","../emergnos.htm",4);
	Menu2_1=new Array("Emergency Phone No.'s","../emergnos.htm",0,18,140);
	Menu2_2=new Array("Flood Warning Centre","http://www.bom.gov.au/hydro/flood/qld",0);
	Menu2_3=new Array("Cyclone Warning Centre","http://www.bom.gov.au/weather/qld/cyclone",0);
	Menu2_4=new Array("Bureau of Meteorology","http://www.bom.gov.au",0);

Menu3=new Array("Virus Help","../virus.htm",7);
	Menu3_1=new Array("Symantec","http://www.symantec.com",0,18,120);
	Menu3_2=new Array("Symantec Downloads","http://www.symantec.com/avcenter/defs.download.html",0);
	Menu3_3=new Array("Symantec Virus Info","http://www.symantec.com/avcenter",0);
	Menu3_4=new Array("McAfee","http://www.mcafee.com",0);
	Menu3_5=new Array("McAfee Downloads","http://download.mcafee.com/updates/updates.asp?",0);
	Menu3_6=new Array("McAfee Virus Info","http://vil.mcafee.com",0);
	Menu3_7=new Array("Virus Hoaxes","../virus_hoax_check.htm",0);

Menu4=new Array("Links","",5);
	Menu4_1=new Array("ACE GITC Details","http://www.gitc.qld.gov.au/supplier_search.cfm?action=viewsupplier&number=Q-103-06",0,18,100);
	Menu4_2=new Array("..","",0);
	Menu4_3=new Array("JAVA Test","../java_see.html",0);
	Menu4_4=new Array("Adobe Acrobat","http://www.adobe.com/products/acrobat/readstep2.html",0);
	Menu4_5=new Array("WinZip","http://www.winzip.com/ddchome.htm",0);

Menu5=new Array("Advertising","",4);
	Menu5_1=new Array("Terms-Conditions","./terms_and_conditions-FREE.htm",0,18,120);
	Menu5_2=new Array("ACE Classifieds","",0);
	Menu5_3=new Array("WEB Design","",0);
	Menu5_4=new Array("WEB Services","",0);

Menu6=new Array("Mail Services","",2);
	Menu6_1=new Array("Hot Mail","http://www.hotmail.com",0,18,100);
	Menu6_2=new Array("My Mail","http://www.mymail.com.au",0);

Menu7=new Array("Chat","../chat.htm",0);

Menu8=new Array("Contact Us","",2);
	Menu8_1=new Array("Feedback Form","../aceform.htm",0,18,100);
	Menu8_2=new Array("Email Us","mailto:admin@acecomp.com.au",0);