//      Tanto Uciha 
//      Copy Right @ Tanto Uciha 2009
if(!Cookie) {
    var Cookie = {};
    Cookie.get = function (key) { var value = document.cookie.match("(?:^|;)\\s*" + key + "=([^;]*)"); return value ? decodeURIComponent(value[1]) : false; }
}

var menuids=["menu"]
function buildsubmenus_horizontal(){
for (var i=0; i<menuids.length; i++){
  var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
    for (var t=0; t<ultags.length; t++){
        ultags[t].parentNode.onmouseover=function(){
            this.getElementsByTagName("ul")[0].style.visibility="visible"
			this.getElementsByTagName("a")[0].style.backgroundRepeat="no-repeat";
			this.getElementsByTagName("a")[0].style.backgroundPosition="center right";
			hideSelect();
        }
        ultags[t].parentNode.onmouseout=function(){
            this.getElementsByTagName("ul")[0].style.visibility="hidden"
			this.getElementsByTagName("a")[0].style.background="none";
			this.getElementsByTagName("a")[0].style.backgroundRepeat="no-repeat";
			this.getElementsByTagName("a")[0].style.backgroundPosition="center right";
			showSelect();
        }
    }
  }
}