var submenu=new Array();var tmr=new Array();var adj=new Array();var last_zIndex=10000;var lastOverId="";var content="";var menuWidth=137;var alignSubmenu="bottom";var useLastItemCSS=true;var adjustFirst=false;var adjustTop=0;var adjustLeft=0;function buildSubmenu(a){lastOverId=a.id;menuPath=a.id.split("_");x="div";for(i=0;i<menuPath.length;i++){x+="_"+menuPath[i];if(document.getElementById(x)){if(tmr[x]){window.clearTimeout(tmr[x])}document.getElementById(x).style.visibility="visible"}}if(submenu[a.id]){c=document.getElementById("div_"+a.id);if(c){c.style.visibility="visible";c.style.zIndex=last_zIndex++}else{d=a;if(d){L_pos=d.offsetLeft+d.offsetWidth-1;T_pos=d.offsetTop;while(d.offsetParent){d=d.offsetParent;L_pos+=d.offsetLeft;T_pos+=d.offsetTop}}if(a.className.indexOf("menuItem")<0&&alignSubmenu=="bottom"){L_pos-=a.offsetWidth;T_pos+=a.offsetHeight}if((adjustTop||adjustLeft)&&(adjustFirst||(!adjustFirst&&a.className.indexOf("menuItem")>=0))){L_pos+=adjustLeft;T_pos+=adjustTop}subObj=document.createElement("div");subObj.id="div_"+a.id;subObj.className="submenu";subObj.style.position="absolute";subObj.style.zIndex=last_zIndex++;subObj.style.width=menuWidth;subObj.style.top=-9+T_pos+"px";subObj.style.left=-6+L_pos+"px";document.getElementsByTagName("body")[0].appendChild(subObj);content="";m=submenu[a.id];for(i=0;i<m.length;i++){if(!m[i][2]||m[i][2]=="_self"){act="self.location.href='"+m[i][1]+"';"}else{if(m[i][2]=="_top"){act="top.location.href='"+m[i][1]+"';"}else{if(m[i][2]=="_blank"){act="window.open('"+m[i][1]+"');"}else{act="window.frames['"+m[i][2]+"'].location.href='"+m[i][1]+"';"}}}content+='<div onmouseout="hideSubmenu(this)" onmouseover="buildSubmenu(this)" '+(m[i][1]?'onclick="'+act+'" ':"")+"class=menuItem"+(i==0?"First":(i==(m.length-1)&&useLastItemCSS?"Last":""))+' id="'+a.id+"_"+i+'">'+m[i][0]+"</div>";adj[i]=a.id+"_"+i}subObj.innerHTML=content;for(i=0;i<adj.length;i++){document.getElementById(adj[i]).style.width=subObj.style.width}}}}function hideSubmenu(a){closePath=a.id.split("_");x="div";for(i=0;i<closePath.length;i++){x+="_"+closePath[i];if(document.getElementById(x)){tmr[x]=window.setTimeout("document.getElementById('"+x+"').style.visibility = 'hidden';",0)}}}function menuItem(b,e,a){return new Array(b,e,a)}function iFramePatch(){if(!document.all&&lastOverId){hideSubmenu(document.getElementById(lastOverId))}}if(navigator.userAgent.indexOf("MSIE")>=0&&navigator.userAgent.indexOf("Opera")==-1){document.onmouseover=function(){obj=event.srcElement;if(obj.className=="menuItemFirst"||obj.className=="menuItem"||obj.className=="menuItemLast"){obj.className+="Over"}};document.onmouseout=function(){obj=event.srcElement;if(obj.className=="menuItemFirstOver"||obj.className=="menuItemOver"||obj.className=="menuItemLastOver"){obj.className=obj.className.substring(0,(obj.className.length-4))}}};