var sporthierarchie= { children:[ { id:0, name:"Sporthierarchie", typ:1, children:[ {id:1296,name:"BALLSPIELE",typ:1,bgcolor:"#FFFFFF",children:[{id:1301,name:"Badminton",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1285,name:"Basketball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1381,name:"Beachvolleyball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1322,name:"Faustball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1312,name:"Flag-Football",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1284,name:"Floorball-Hallenhockey",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1302,name:"Fußball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1321,name:"Hallenhockey",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1319,name:"Squash",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1324,name:"Tennis",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1323,name:"Tischtennis",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1283,name:"Volleyball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1291,name:"Weitere",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1282,name:"GERÄTTURNEN - AKROBATIK",typ:1,bgcolor:"#FFFFFF",children:[{id:1316,name:"AcroYoga- Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1315,name:"Bodenturnen-Bodenakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1314,name:"Gerätturnen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1317,name:"Handstandtraining",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1281,name:"Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1321,name:"Hallenhockey",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1299,name:"IM AM UNTER WASSER",typ:1,bgcolor:"#FFFFFF",children:[{id:1345,name:"Kanupolo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1344,name:"Rudern",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1289,name:"Schwimmen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1361,name:"Tauchen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1290,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1401,name:"JKUsports Tryout",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1300,name:"KAMPFSPORT - KAMPFKUNST",typ:1,bgcolor:"#FFFFFF",children:[{id:1288,name:"Aikido",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1292,name:"Kampfsportfitness",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1287,name:"Taekwondo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1286,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1294,name:"KLETTERN",typ:1,bgcolor:"#FFFFFF",children:[{id:1308,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1310,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1297,name:"KONDITION - FITNESS",typ:1,bgcolor:"#FFFFFF",children:[{id:1303,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1342,name:"Mountainbike",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1318,name:"NEUER USI-Kurs",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1307,name:"OUTDOORWOCHEN / KURSTAGE",typ:1,bgcolor:"#FFFFFF",children:[{id:1483,name:"Sommer",typ:1,bgcolor:"#FFFFFF",children:[{id:1484,name:"Sommercamp",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1309,name:"Wintersport",typ:1,bgcolor:"#FFFFFF",children:[{id:1305,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1304,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1306,name:"USI-Bus",typ:1,bgcolor:"#FFFFFF",children:[]}]}]},{id:1341,name:"RADSPORT",typ:1,bgcolor:"#FFFFFF",children:[{id:1343,name:"Bikepolo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1342,name:"Mountainbike",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1485,name:"SOMMERKURSE",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1298,name:"TANZ",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1361,name:"Tauchen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1320,name:"USI-Fitness-Studio",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1295,name:"WEITERES",typ:1,bgcolor:"#FFFFFF",children:[{id:1303,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1311,name:"zu Sonstigem",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1313,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(); } }