<!--
		M_menuURLs=new Array();
		
		M_menuURLs[0]="index.htm";
		
		
		//pre-load graphic menu button images
		if(document.images)
			{
				M_imagefile=new Array();
				
				M_imagefile[0]="images/dbkez_dot_lsalmon.gif";
				M_imagefile[1]="images/dbkez_dot_dsalmon.gif";
				
				
				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];
					}						
				
				
			}	
			
				
		
			
	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 gotoURL(M_intURLIndex)
		{
			document.location = M_menuURLs[M_intURLIndex];
		}
		
	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;
				}
		}
			
			
			
		
//-->	