// JavaScript Document

<script type="text/javascript">
popUpInfo = function()
		{ 
			var x = cssQuery("ul[class='popUpInfo']");
			var sfEls = cssQuery("li", x);
			for (var i=0; i<sfEls.length; i++)
			{
				sfEls[i].onmouseover=function() { 
					this.className+=" popUpInfo";
				}
				sfEls[i].onmouseout=function() { 
					//this.className=this.className.replace(new RegExp(" popUpInfo\b"), "");
					this.className="";
				}
			}
		}
		if (window.attachEvent) window.attachEvent("onload", popUpInfo);
		function hideDropDown()
		{
			var dropDownList = cssQuery("select");
			for (var j=0 ; j<dropDownList.length; j++)
			{
					dropDownList[j].style.visibility = "hidden";
			}
		}

		function showDropDown()
		{
			var dropDownList = cssQuery("select");
			for (var j=0 ; j<dropDownList.length; j++)
			{
					dropDownList[j].style.visibility = "visible";
			}
		}
</script>
