# *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* 
#   Copyright University Corporation for Atmospheric Research (UCAR) 
#   2009-2010. All rights reserved. The Government's right to use this 
#   data and/or software (the "Work") is restricted per the terms of the 
#   Government Use Only License Agreement for (JAWS), effective 
#   2-22-2006,between UCAR and the Federal Aviation Administration 
#   (including any and all amendments thereto) to a "nonexclusive, 
#   noncommercial, government use license.  Such license does not 
#   include the right to sell copies of the copyrighted works. The Work 
#   is provided "AS IS" and without warranty of any kind.UCAR EXPRESSLY 
#   DISCLAIMS ALL OTHER WARRANTIES, INCLUDING, BUT NOT LIMITED TO, ANY 
#   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
#   PURPOSE 
#  
# *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* 


//SuckerTree Vertical Menu (Aug 4th, 06)
//By Dynamic Drive: http://www.dynamicdrive.com/style/

var menuids=["suckertree1"] //Enter id(s) of SuckerTree UL menus, separated by commas

function buildsubmenus(){
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.getElementsByTagName("a")[0].className="subfolderstyle"
    ultags[t].parentNode.onmouseover=function(){
    this.getElementsByTagName("ul")[0].style.display="block"
    }
    ultags[t].parentNode.onmouseout=function(){
    this.getElementsByTagName("ul")[0].style.display="none"
    }
    }
  }
}

if (window.addEventListener)
window.addEventListener("load", buildsubmenus, false)
else if (window.attachEvent)
window.attachEvent("onload", buildsubmenus)

