<!--
		
	if(document.images)
		{
			M_imagefile=new Array();
			M_imagefile[0]="images/r_main_menuitem.gif";
			M_imagefile[1]="images/r_main_menuitem_over.gif";
				
				
			M_images=new Array();
				
			for (var index=0; index<M_imagefile.length; index++)
				{
					M_images[index]=new Image();
					M_images[index].src=M_imagefile[index];
				}
		}
	
			
	function gotoURL(strPageURL)
		{
			document.location=strPageURL;
		}
		
		
	function gotoAnchor(strAnchor)
		{
			
		}
		
		
			
	function toggleImage(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;
				}
		}
			
			
			
	
		
//-->