window.onload=function(){
if(document.getElementsByTagName && document.getElementById){
    document.getElementById("nav1").className="menuatt";
    BuildList();
    }
}

function BuildList(){
var hsblu=document.getElementById("sx").getElementsByTagName("h3");
for(var i=0;i<hsblu.length;i++){
    hsblu[i].onclick=function(){
        this.parentNode.className=(this.parentNode.className=="show") ? "hide" : "show";
        }
    }
}


