		<!--
	// Initialise variables
	arMenusOpen = new Array();
	
	function fuOver(menu, menuLevel) 
	{
		if (closeAll) clearTimeout(closeAll);
		// close levels above current
		
		if (menuLevel < arMenusOpen.length) {
			currentLevel = menuLevel;
			fuCloseMenus();
		};
		
		// show next child
		if (menu != "") 
		{
			MM_showHideLayers(menu,'','show');
			// look for menu name in menusOpen array
			for (var i = 0; i < arMenusOpen.length + 1; i++) 
			{
				if (menu == arMenusOpen[i]) 
				{
					// found it
					var menuListed = 1;
				};
			};
			// add menu name to menusOpen array if its not already there
			if (menuListed != 1) 
			{
				arMenusOpen[arMenusOpen.length] = menu;
			};
		}; 
	};
	
	function fuSetTimer() 
	{
		closeAll = setTimeout("fuCloseAllMenus()",400);
	};
	
	function fuCloseAllMenus() 
	{
		currentLevel = 0;
		fuCloseMenus();
	};
	
	function fuCloseMenus() 
	{
		// Hide all levels above current
		for (var i=arMenusOpen.length-1; i >= currentLevel; i=i-1) 
		{
			MM_showHideLayers(arMenusOpen[i],'','hide');
		};
		// Remove all levels above current from menusOpen array
		for (var i=arMenusOpen.length-1; i >= currentLevel; i=i-1) 
		{
			delete arMenusOpen[i];
			arMenusOpen.length -= 1;
		};
	};
	
	// Macromedia Stuff
	function MM_findObj(n, d) 
	{ //v4.01
	  var p,i,x;  
	  if(!d) d=document; 
	  if((p=n.indexOf("?"))>0&&parent.frames.length) 
	  {
		d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);
	  };
	  if(!(x=d[n])&&d.all) x=d.all[n]; 
	  
	  for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	  if(!x && d.getElementById) x=d.getElementById(n); return x;
	};
	
	function MM_showHideLayers() 
	{ //v3.0
	  var i,p,v,obj,args=MM_showHideLayers.arguments;
	  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
		if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
		obj.visibility=v; }
	};
	function go(URL)
	{
		document.location.href = URL;
	};
	function printp()
	{
		window.print();
	};
	
	function delivery()
	{
		go('default.aspx?tid=3&cid=1&info=delivery');
	};
	
	function privacy()
	{
		go('default.aspx?tid=3&cid=1&info=privacy_policy');
	};
	
	function security1()
	{
		go('default.aspx?tid=3&cid=1&info=security_policy');
	};
	function ShowPicture(s)
	{
		var img = document.getElementById("productPic");
		img.src = s;
	}
	function validEmail(str) 
	{
		return (str.indexOf(".") > 2) && (str.indexOf("@") > 0);
	}
	function setCookies()
	{
		if (validEmail(document.getElementById("contactAddEmail").value) && validEmail(document.getElementById("contactAddEmailConfirm").value))
		{
			if (document.getElementById("contactAddEmail").value!=document.getElementById("contactAddEmailConfirm").value)
			{
				alert("The email addresses which you have provided don't match - please check them and try again.");
			}
			else
			{
				document.cookie = "contactFirstName="+document.getElementById("contactFirstName").value;
				document.cookie = "contactLastName="+document.getElementById("contactLastName").value;
				document.cookie = "contactAddEmail="+document.getElementById("contactAddEmail").value;
				document.cookie = "contactComments="+document.getElementById("contactComments").value;
				document.cookie = "contactHowInfo="+document.getElementById("contactHowInfo").value;
				alert("Thank you for your comments.");
				go('default.aspx?tid=3&cid=1&info=find_us&complete=1');
			}
		}
		else
		{
			alert("The email address which you provided is in an invalid format - please check it and try again.");
		}
	}
	function goe(URL)
	{
		if (validEmail(document.getElementById("mailInput").value))
		{
			alert("Thank you for signing up!");
			document.location.href = URL;
		}
		else
		{
			alert("The email address which you provided is in an invalid format - please check it and try again.");
		}
	};
	// initialise closeAll
	fuSetTimer();
	
	-->
