<!--
/**********************************************************************
 * G'day Howard,
 *---------------------------------------------------------------------
 * Remember to back up before you f**k up.
 * and be very careful if you edit the following 3 lines.
 *********************************************************************/
var thisLoc = document.location.href.split('au/')[1];
var navItems = new Array();
var navStyle = new Array("navLeft","navLeftSecond");




/**********************************************************************
 * The following arrays provide the display name, URL, and navigation level for every page.
 * The navigation builds in the same order that the items are listed in the arrays.
 *---------------------------------------------------------------------
 * To add a new page
 * 	Add an additional line within the appropriate top level group
 * 			Ensure each array entry ends with a comma EXCEPT THE LAST ONE!
 * 			Ensure the format remains true,
 * 																		"NAME||URL||LEVEL",
 * 			Where:
 * 			NAME can be any alphanumeric characters EXCEPT " | or ,
 * 				URL starts at the root, (/) for internal links or the protocol, (http://) for external links
 * 				LEVEL can be 0 or 1
 * 					To add a level:
 * 						create the additional style in /style/deltaEdge.css
 * 					add the style to the navStyle Array at line 10 of this file,
 * 							i.e. var navStyle = new Array("navLeft","navLeftSecond","navLeftThird");
 *---------------------------------------------------------------------
 * to add a new site section, simply add a new navItems array, 
 *   i.e. navItems[5] = new Array(
 * 			"New Page Name||NewPageURL||NewPageLevel",
 * 			"Other New Page||OtherPageURL||OtherPageLevel",
 * 			"Next New Page||NextPageURL||NextPageLevel"
 * 		)
 *********************************************************************/

navItems[0] = new Array(
		"Solutions Overview||solutions/index.html||0",
		"Small Businesses||solutions/smallbusinesses.html||1",
		"Project Teams||solutions/projectteams.html||1",
		"Solution Examples||solutions/solutionexamples.html||0",
		"Intranet Office||solutions/intranetoffice.html||1",
		"Project Collaboration||solutions/projectcollaboration.html||1",
		"Professional Services||solutions/professionalservices.html||1",
		"Marketing Coordination||solutions/marketingcoordination.html||1",
		"Client/Suppplier Extranet||solutions/clientsupplierextranet.html||1",
		"Mobile Sales Force||solutions/mobilesales.html||1"
	)
navItems[1] = new Array(
		"Product Overview||products/index.html||0",
		"Document Sharing||products/documentsharing.html||1",
		"Group Calendar||products/groupcalendar.html||1",
		"Business Class Email||products/emailaccounts.html||1",
		"Contacts & Tasks||products/contactstasks.html||1",
		"Web Meetings||products/webmeetings.html||1",
		"Database Applications||products/databaseapplications.html||1",
		"Discussion Forums||products/discussionforums.html||1",
		"Utility Tools||products/utilitytools.html||1",
		"Administration Manager||products/administrationmanager.html||1",
		"World Class Security||products/security.html||0",
		"The Online Advantage||products/onlineadvantage.html||0",
		"Your Benefits||products/yourbenefits.html||0",
		"Why Delta Edge||products/deltaedge.html||0"
	)
navItems[2] = new Array(
		"Services & Support||servicessupport/index.html||0",
		"Implementation||servicessupport/implementation.html||1",
		"Consulting||servicessupport/consulting.html||1",
		"Training||servicessupport/training.html||1",
		"Support||servicessupport/support.html||1",
		"Customer Service||servicessupport/customerservice.html||0"
	)
navItems[3] = new Array(
		"Pricing Plans||pricingplans/index.html||0",
		"Service Options||pricingplans/serviceoptions.html||1",
		"Upgrade Options||pricingplans/upgradeoptions.html||1",
		"Quick Tour||http://demo-deltaedge.intranets.com||0||_blank",
		"Free Trial||pricingplans/freetrial.html||0",
		"Subscribe||pricingplans/subscribe.html||0"
	)
navItems[4] = new Array(
		"About Delta Edge||aboutus/index.html||0",
		"Contact us||aboutus/contactus.html||0"
	)


// edit anything below here at your own risk!

function drawNav(group,item){
	var htmlStart = "<DIV id='navLeftDiv'><TABLE width='174' cellpadding='0' cellspacing='0' border='0'>";
	var htmlEnd = "</TABLE></DIV>";
	var colonMiddot = "<SPAN class='normalRedBold'>:</SPAN><SPAN class='navTopMiddot'>&middot;</SPAN> "
	var htmlMiddle = "";
	var thisItem = new Array();
	for (var k=0;k<navItems[group].length;k++){
		thisItem = navItems[group][k].split('||');
		htmlMiddle += "<TR><TD nowrap><A href='";
		if (thisItem[3]){
			htmlMiddle += thisItem[1] + "' target='" + thisItem[3] + "' ";
		} else {
			htmlMiddle += "/" + thisItem[1] + "' ";
		}
		htmlMiddle += " style='text-decoration:none;'><DIV class=\"" + navStyle[thisItem[2]];
		if (k == item){
			htmlMiddle += "Sel";
		} else {
			htmlMiddle += "\" onmouseover=\"this.className='" + navStyle[thisItem[2]] + "High';\" onmouseout=\"this.className='" + navStyle[thisItem[2]] + "';";
		}
		htmlMiddle += "\" style='width:100%;height:16px;' >" + colonMiddot + thisItem[0] + "</DIV></A></TD></TR>";
	}
	document.write(htmlStart + htmlMiddle + htmlEnd);
}

for (var i=0;i<navItems.length;i++){
	for (var j=0;j<navItems[i].length;j++){
		if (navItems[i][j].split('||')[1] == thisLoc){
			drawNav(i,j);
			break;
		}
	}
}

//-->

