function initDocument() { if (arguments.callee.done) return; arguments.callee.done = true; var menu = new SVLeftMenu(document.getElementById("leftmenu")); menu.prefs["no-controls"] = true; menu.prefs["icon-width"] = 18; menu.prefs["icon-height"] = 18; menu.openMenu(); var section; if (selectedMainSection == 1) { thisSelectedItem = selectedItem } else { thisSelectedItem = -1; } section = new NavSection(menu, "Online", [[ "Forside", "default.asp", "", "", (thisSelectedItem==1?"1":"0") ],[ "Nyheder", "news.asp", "", "", (thisSelectedItem==2?"1":"0") ],[ "Pladeanmeldelser", "review.asp?reviewtype=record", "", "", (thisSelectedItem==3?"1":"0") ],[ "Koncertanmeldelser", "review.asp?reviewtype=concert", "", "", (thisSelectedItem==4?"1":"0") ],[ "Features", "interview.asp", "", "", (thisSelectedItem==5?"1":"0") ],[ "Udgivelser på vej", "releaseplan.asp", "", "", (thisSelectedItem==6?"1":"0") ],[ "Blog", "blog.asp", "", "", (thisSelectedItem==7?"1":"0") ]]); if (selectedMainSection == 1) { menu.currentSection = section; section.setClass("active-section"); } if (selectedMainSection == 2) { thisSelectedItem = selectedItem } else { thisSelectedItem = -1; } section = new NavSection(menu, "Magasin", [[ "Seneste magasin", "magazine.asp", "", "", (thisSelectedItem==1?"1":"0") ],[ "Bestil abonnement", "shop.asp?productgroup=1", "", "", (thisSelectedItem==2?"1":"0") ],[ "Køb tidligere numre", "issuelist.asp", "", "", (thisSelectedItem==3?"1":"0") ],[ "Find forhandler", "forhandlere.asp", "", "", (thisSelectedItem==4?"1":"0") ],[ "Webshop", "shop.asp", "", "", (thisSelectedItem==5?"1":"0") ]]); if (selectedMainSection == 2) { menu.currentSection = section; section.setClass("active-section"); } if (selectedMainSection == 3) { thisSelectedItem = selectedItem } else { thisSelectedItem = -1; } section = new NavSection(menu, "Upcoming bands", [[ "Forside", "upcoming.asp", "", "", (thisSelectedItem==1?"1":"0") ],[ "Bands", "band.asp", "", "", (thisSelectedItem==2?"1":"0") ],[ "Musik", "mp3.asp", "", "", (thisSelectedItem==3?"1":"0") ],[ "Musikvideoer", "videos.asp", "", "", (thisSelectedItem==4?"1":"0") ],[ "Selected", "selected.asp", "", "", (thisSelectedItem==5?"1":"0") ],[ "Forum", "forum.asp?view=musiker", "", "", (thisSelectedItem==6?"1":"0") ],[ "Login/Tilmeld band", "band_login.asp", "", "", (thisSelectedItem==7?"1":"0") ]]); if (selectedMainSection == 3) { menu.currentSection = section; section.setClass("active-section"); } if (selectedMainSection == 4) { thisSelectedItem = selectedItem } else { thisSelectedItem = -1; } section = new NavSection(menu, "Info + kontakt", [[ "Forside", "article.asp?id=49", "", "", (thisSelectedItem==1?"1":"0") ],[ "Kontakt os", "contact.asp", "", "", (thisSelectedItem==2?"1":"0") ],[ "Om Soundvenue", "article.asp?id=38", "", "", (thisSelectedItem==3?"1":"0") ],[ "Download area", "presse.asp", "", "", (thisSelectedItem==4?"1":"0") ],[ "Mediainfo", "article.asp?id=30", "", "", (thisSelectedItem==5?"1":"0") ],[ "Samarbejdspartnere", "article.asp?id=47", "", "", (thisSelectedItem==6?"1":"0") ],[ "FAQ", "faq.asp", "", "", (thisSelectedItem==7?"1":"0") ]]); if (selectedMainSection == 4) { menu.currentSection = section; section.setClass("active-section"); } menu.generate(); menu.prefs["mono-section"] = true; menu.sync(); }