var sporthierarchie= { children:[ { id:0, name:"Sporthierarchie", typ:1, children:[ {id:1122,name:"BALLSPIELE",typ:1,bgcolor:"#FFFFFF",children:[{id:1127,name:"Badminton",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1110,name:"Basketball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1161,name:"Faustball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1147,name:"Flag-Football",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1145,name:"Floorball-Hallenhockey",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1128,name:"Fußball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1162,name:"Softball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1106,name:"Tennis",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1136,name:"Tischtennis",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1111,name:"Volleyball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1103,name:"Wasserball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1117,name:"Weitere",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1101,name:"GERÄTTURNEN - AKROBATIK",typ:1,bgcolor:"#FFFFFF",children:[{id:1102,name:"AcroYoga- Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1142,name:"Bodenturnen-Bodenakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1143,name:"Gerätturnen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1146,name:"Handstandtraining",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1144,name:"Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1125,name:"IM AM UNTER WASSER",typ:1,bgcolor:"#FFFFFF",children:[{id:1108,name:"Paddeln",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1107,name:"Rudern",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1115,name:"Schwimmen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1109,name:"Tauchen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1104,name:"Wasserball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1116,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1126,name:"KAMPFSPORT - KAMPFKUNST",typ:1,bgcolor:"#FFFFFF",children:[{id:1114,name:"Aikido",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1118,name:"Kampfsportfitness",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1113,name:"Taekwondo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1112,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1120,name:"KLETTERN",typ:1,bgcolor:"#FFFFFF",children:[{id:1134,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1137,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1123,name:"KONDITION - FITNESS",typ:1,bgcolor:"#FFFFFF",children:[{id:1129,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1181,name:"NEUER USI-Kurs",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1133,name:"OUTDOORWOCHEN / KURSTAGE",typ:1,bgcolor:"#FFFFFF",children:[{id:1140,name:"Sommersport",typ:1,bgcolor:"#FFFFFF",children:[{id:1139,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1138,name:"USI-Bus",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1135,name:"Wintersport",typ:1,bgcolor:"#FFFFFF",children:[{id:1131,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1130,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1132,name:"USI-Bus",typ:1,bgcolor:"#FFFFFF",children:[]}]}]},{id:1124,name:"TANZ",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1201,name:"USI-Fitness-Studio",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1121,name:"WEITERES",typ:1,bgcolor:"#FFFFFF",children:[{id:1129,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1105,name:"zu Sonstigem",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1141,name:"Xunde BEWEGUNG 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(); } }