<!--
		//pre-load menu button images
		if(document.images)
			{
				M_imagefile=new Array();							
				
				
				M_imagefile[0]="images/abwmc_menu_1_1.jpg";
				M_imagefile[1]="images/abwmc_menu_1_1_over.jpg";
				M_imagefile[2]="images/abwmc_menu_1_2.jpg";
				M_imagefile[3]="images/abwmc_menu_1_2_over.jpg";
				M_imagefile[4]="images/abwmc_menu_1_3.jpg";
				M_imagefile[5]="images/abwmc_menu_1_3_over.jpg";
				M_imagefile[6]="images/abwmc_menu_1_4.jpg";
				M_imagefile[7]="images/abwmc_menu_1_4_over.jpg";
				M_imagefile[8]="images/abwmc_menu_1_5.jpg";
				M_imagefile[9]="images/abwmc_menu_1_5_over.jpg";
				
				M_imagefile[12]="images/abwmc_menu_2_1.jpg";
				M_imagefile[13]="images/abwmc_menu_2_1_over.jpg";
				M_imagefile[14]="images/abwmc_menu_2_2.jpg";
				M_imagefile[15]="images/abwmc_menu_2_2_over.jpg";
				M_imagefile[16]="images/abwmc_menu_2_5.jpg";
				M_imagefile[17]="images/abwmc_menu_2_5_over.jpg";
				M_imagefile[18]="images/abwmc_menu_2_4.jpg";
				M_imagefile[19]="images/abwmc_menu_2_4_over.jpg";
				
				M_images=new Array();
				
				for (var M_index=0; M_index<M_imagefile.length; M_index++)
					{
						M_images[M_index]=new Image();
						M_images[M_index].src=M_imagefile[M_index];
					}
					
					
				M_menuURLs=new Array();	
				
				M_menuURLs[0]="index.php";
				M_menuURLs[1]="water_plans.php";
				M_menuURLs[2]="annual_reporting.php";
				M_menuURLs[3]="fullstop.php";
				M_menuURLs[4]="map_layers.php";
				M_menuURLs[5]="downloads.php";
				M_menuURLs[11]="history.php";
				M_menuURLs[12]="code_of_practice.php";
				M_menuURLs[13]="soils_book.php";
				M_menuURLs[14]="geophysics.php";
						
				
				
			}
			
		var strBrowserType = BrowserDetect.browser;	
						
	function gotoURL(M_intURLIndex)
		{
			document.location = M_menuURLs[M_intURLIndex];
		}
	
	
	function toggleMenuImage(M_imgID,M_index)
			{
				var M_strImageElement = null;
				
					
				if (FD_isDHTML)
					{
						M_strImageElement = findDOM(M_imgID, 0);
						M_strImageElement.src = M_images[M_index].src;						
					}
				else
					{
						return null;
					}
			}			
	
		
	function gotoAnchor(M_strAnchor)
		{
			
		}
	
	function displayMenuDescription(M_intIndex)
		{
			var M_strDescriptionContainer=null;
			
			if (isDHTML)
				{
					M_strDescriptionContainer = findDOM('menu_description', 0);
					M_strDescriptionContainer.innerHTML = menuDescriptions[M_intIndex];
				}
			else
				{
					return null;
				}
		}
			
			
		
//-->	
