// JavaScript Document
			function ClickHandler (strURL)
			{
				window.location.href = strURL
			}

			function EffectOn (theElement)
			{
				if (theElement.style)
				{
					theElement = theElement.style
				}
				if (theElement.background != "undefined")
				{
					theElement.background = "#F54A18";
				}
				if (theElement.borderColor != "undefined")
				{
					theElement.borderColor = "#EABE97";
				}
				if (theElement.cursor != "undefined")
				{
					theElement.cursor = "hand";
				}
			}

			function EffectOff (theElement)
			{
				if (theElement.style)
				{
					theElement = theElement.style
				}
				if (theElement.background != "undefined")
				{
				theElement.background = "";
				}
				if (theElement.borderColor != "undefined")
				{
				theElement.borderColor = "#CC3300";
				}
				if (theElement.cursor != "undefined")
				{
					theElement.cursor = "auto";
				}
			}
						
			function EffectOffSlide (theElement)
			{
				if (theElement.style)
				{
					theElement = theElement.style
				}
				if (theElement.background != "undefined")
				{
				theElement.background = "";
				}
				if (theElement.borderColor != "undefined")
				{
				theElement.borderColor = "#0066CC";
				}
				if (theElement.cursor != "undefined")
				{
					theElement.cursor = "auto";
				}
			}
			