    //<![CDATA[
  function show(element){
           element.className += "hover";
   }
 function hide(element){
           element.className = element.className = "";
     }
function ShowMenu(mid) {
	this.getElementById(mid).style.display = 'inline';
	this.getElementById(mid).style.visibility = 'visible';
	}
	function HideMenu(mid) {
	document.getElementById(mid).style.visibility = 'hidden';
	} 

    //]]>


