var sporthierarchie= { children:[ { id:0, name:"Sporthierarchie", typ:1, children:[ {id:954,name:"BALLSPIELE",typ:1,bgcolor:"#FFFFFF",children:[{id:959,name:"Badminton",typ:1,bgcolor:"#FFFFFF",children:[]},{id:943,name:"Basketball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:970,name:"Flag-Football",typ:1,bgcolor:"#FFFFFF",children:[]},{id:941,name:"Floorball-Hallenhockey",typ:1,bgcolor:"#FFFFFF",children:[]},{id:960,name:"Fußball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:942,name:"Volleyball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:949,name:"Weitere",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:981,name:"GERÄTTURNEN - AKROBATIK",typ:1,bgcolor:"#FFFFFF",children:[{id:985,name:"AcroYoga- Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:984,name:"Bodenturnen-Bodenakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:983,name:"Gerätturnen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:987,name:"Handstandtraining",typ:1,bgcolor:"#FFFFFF",children:[]},{id:986,name:"Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:957,name:"IM AM UNTER WASSER",typ:1,bgcolor:"#FFFFFF",children:[{id:947,name:"Schwimmen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:948,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:958,name:"KAMPFSPORT - KAMPFKUNST",typ:1,bgcolor:"#FFFFFF",children:[{id:946,name:"Aikido",typ:1,bgcolor:"#FFFFFF",children:[]},{id:950,name:"Kampfsportfitness",typ:1,bgcolor:"#FFFFFF",children:[]},{id:945,name:"Taekwondo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:944,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:952,name:"KLETTERN",typ:1,bgcolor:"#FFFFFF",children:[{id:966,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:968,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:955,name:"KONDITION - FITNESS",typ:1,bgcolor:"#FFFFFF",children:[{id:961,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:965,name:"OUTDOORWOCHEN / KURSTAGE",typ:1,bgcolor:"#FFFFFF",children:[{id:967,name:"Wintersport",typ:1,bgcolor:"#FFFFFF",children:[{id:963,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:962,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]},{id:964,name:"USI-Bus",typ:1,bgcolor:"#FFFFFF",children:[]}]}]},{id:956,name:"TANZ",typ:1,bgcolor:"#FFFFFF",children:[]},{id:953,name:"WEITERES",typ:1,bgcolor:"#FFFFFF",children:[{id:961,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]},{id:969,name:"zu Sonstigem",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:971,name:"XUNDES für JKU-MA",typ:1,bgcolor:"#FFFFFF",children:[]}]}]} function sphLevel(previousLevel,root) { this.previousLevel=previousLevel; this.root=root; var el=document.getElementById("uonSportarten"); var newEl=document.createElement("div"); el.appendChild(newEl); var select=document.createElement("select"); select.name="sp_id_in"; newEl.appendChild(select); for (var i=-1;i0) text=text+" >"; opt.text=text; opt.value=child.id; opt.style.backgroundColor=child.bgcolor; select.options.add(opt); } var that=this; var onchange=function() { that.expand(that.select.options[that.select.selectedIndex].value); } if (window.addEventListener) { select.addEventListener("change",onchange,false); } else { select.attachEvent("onchange",onchange); } this.select=select; this.newEl=newEl; } sphLevel.prototype={ expand:function(id) { if (this.nextLevel) this.collapse(); var next=null; for (var i=0;i0) { this.nextLevel=new sphLevel(this,next); } this.select.blur(); return this.nextLevel; }, collapse:function() { this.nextLevel.remove(); this.nextLevel=null; }, remove:function() { this.newEl.parentNode.removeChild(this.newEl); if (this.nextLevel) this.nextLevel.remove(); } }