<!--
		
		if(document.images)
			{

				
				IM_imagefile=new Array();
				IM_imagefile[0]="images/transparentspacer.gif";
				IM_imagefile[1]="images/softfoot_menu_button_grey.png";
				IM_imagefile[2]="images/softfoot_menu_button_grey_over.png";
				IM_imagefile[3]="images/softfoot_menu_button_aqua.png";
				IM_imagefile[4]="images/softfoot_menu_button_aqua_over.png";
				IM_imagefile[5]="images/softfoot_menu_button_white.png";
				IM_imagefile[6]="images/softfoot_menu_button_white_over.png";
				IM_imagefile[7]="images/softfoot_menu_button_black.png";
				IM_imagefile[8]="images/softfoot_menu_button_black_over.png";
				IM_imagefile[9]="images/softfoot_menu_button_ochre.png";
				IM_imagefile[10]="images/softfoot_menu_button_ochre_over.png";
				IM_imagefile[11]="images/softfoot_menu_button_green.png";
				IM_imagefile[12]="images/softfoot_menu_button_green_over.png";
				IM_imagefile[13]="images/softfoot_menu_button_blue.png";
				IM_imagefile[14]="images/softfoot_menu_button_blue_over.png";
				
				
				
				
				//element 40 and over is used in the store

				IM_images=new Array();
				
				for (var M_index=0; M_index<IM_imagefile.length; M_index++)
					{
						IM_images[M_index]=new Image();
						IM_images[M_index].src=IM_imagefile[M_index];
					}				
				
			}			
		
			
	function toggleImage(IM_imgName,IM_index)
			{
				var IM_strImageElement = null;
				
				if (FD_isDHTML)
					{
						IM_strImageElement = findDOM(IM_imgName, 0);
                        try
                            {
                                IM_strImageElement.filters(0).src = IM_images[IM_index].src;
                            }
                        catch(e)
                            {
                                IM_strImageElement.src = IM_images[IM_index].src;
                            }                         
					}
				else
					{
						return null;
					}
			}
			
	function toggleText(IM_divName,IM_colour)
		{
			
			if (FD_isDHTML)
				{
					try
						{							
							IM_strTextElement = findDOM(IM_divName, 1);
							IM_strTextElement.color=IM_colour;
						}
					catch(e)
						{
						
						}
				}
			else
				{
						return null;
				}
		}		
			
	function gotoURL(IM_strPageURL)
		{
			document.location=IM_strPageURL;
		}
		
	function gotoAnchor(IM_strAnchor)
		{
			
		}
			
			
			
		
//-->	
