
			var submenu = false;			
			var fontsize = 13, fontArray, chip;
			var allcookies = document.cookie;
			var cookieSheet;
			var ImgOn = "images/menu-on.gif";
			var ImgOff = "images/menu-off.gif";

			function lighton (obj)
			{
				obj.style.backgroundImage = 'url('+ImgOn+')';
				return true;
			}
			function lightoff (obj)
			{
				obj.style.backgroundImage = 'url('+ImgOff+')';
				
				return true;
			}
			function setfont (size)
			{
				var contents = document.getElementsByTagName("P");
				for(i = 0; i < contents.length; i++ )
				{
					if (!contents[i].id)
					{
						contents[i].style.fontSize = size + "px";
					}
				}
				
				savefont(size);
				return true;
			}
			
			function savefont (size)
			{
				var nextyear = new Date();
				nextyear.setFullYear(nextyear.getFullYear() + 1);
				document.cookie = "fontsize=" + size + "; path=/; expires=" + nextyear.toGMTString();
			}
			
			function loadfont ()
			{
				// Obtain font size
				//
				if (allcookies != null) {
					cookieSheet = allcookies.split(";");

					for (chip = 0; chip < cookieSheet.length; chip++)
					{
						if (cookieSheet[chip].indexOf('fontsize') > -1) //pull "fontsize" from the cookie
						{
							fontArray = cookieSheet[chip].split("=")
							fontsize = fontArray[1];
							setfont(fontsize);
						}
					}
				}
			}
			
			function autoresize(img)
			{
			}