var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10017", "Neu_20im_20Shop_20(10)", "/neu-im-shop/index.html", 1, "", 1, "");
addItem("1002", "Gemafreie_20Songs", "/musik-kategorien/index.html", 1, "", 1, "");
addItem("1005", "Ambient_20_X4_20Cill_20Out_20(19)", "/musik-kategorien/ambient-cill-out/index.html", 2, "", 1, "");
addItem("1006", "Lounge_20_X4_20Wellness_20(16)", "/musik-kategorien/lounge-wellness/index.html", 2, "", 1, "");
addItem("1007", "Soft_20Pop_20(7)", "/musik-kategorien/pop-dance/index.html", 2, "", 1, "");
addItem("1009", "Disco_20_X4_20Dance_20(2)", "/musik-kategorien/dance-disco/index.html", 2, "", 1, "");
addItem("1008", "Instrumental_20(21)", "/musik-kategorien/instrumental/index.html", 2, "", 1, "");
addItem("10016", "Modern_20Classics_20(2)", "/musik-kategorien/modern-classics/index.html", 2, "", 1, "");
addItem("1004", "Gemafreie_20Filmmusik_20(22)", "/filmmusik/index.html", 1, "", 1, "");
addItem("1003", "Gemafreie_20Musik_20CD_X9s_20(6)", "/gemafreie-cds/index.html", 1, "", 1, "");
addItem("10020", "Ger_C3_A4usche_20_X7_20Sounds_20(1)", "/geraeusche-sounds/index.html", 1, "", 1, "");
addItem("10011", "Gesamtverzeichnis", "/intern/index.html", 1, "", 1, "");
addItem("10012", "Thema_20_22Atlantis_22_20(6)", "/intern/atlantis/index.html", 2, "", 1, "");
addItem("10013", "Thema_20_22Die_20Tr_C3_A4ume_22_20(7)", "/intern/die-traeume/index.html", 2, "", 1, "");
addItem("10014", "Thema_20_22Made_20in_20Berlin_22_20(8)", "/intern/made-in-berlin/index.html", 2, "", 1, "");
addItem("10023", "Thema_20_22Deep_20Ocean_22_20(9)", "/intern/thema-deep-ocean/index.html", 2, "", 1, "");
addItem("10018", "Thema_20_22Mystic_20Avalon_22_20(9)", "/intern/thema-mystic-avalon/index.html", 2, "", 1, "");
addItem("10021", "Thema_20Sounds_20of_20Ireland_20(Ger_C3_A4usche_20zur_20Videovertonung)", "/intern/thema-sounds-of-ireland-geraeusche-zur-videovertonung/index.html", 2, "", 1, "");
addItem("10022", "FAQ_20Nutzungsrechte", "/faq-nutzungsrechte/index.html", 1, "", 1, "");
};

var m_sSelectedOptionValue = '0';
function printCatnavDropdown(){
	document.write('<select id="catdropdown" style="width:100%"></select>');
	SMShop.base.addMember("CatnavDropdown");
};

function CatnavDropdown_windowOnLoad(args){
	var oItems = g_oPopupMenu.selectItems(0, true);
	var selCatDropDown = $('catdropdown'),oOption = null, sDepth = '';

	if(m_sSelectedOptionValue == '0'){
		oOption = selCatDropDown[selCatDropDown.length] = new Option();
		with(oOption){
			selected='selected';
			text='<Warengruppen>';
			value = '0';
		}
	};

	oItems.each(function(oItem) {
		sDepth = ''; for(var i=1;i<parseInt(oItem.depth);i++) sDepth += '-';
		oOption = selCatDropDown[selCatDropDown.length] = new Option();
		with(oOption){
			if(oItem.id == m_sSelectedOptionValue) selected = 'selected';
			text = sDepth + ' ' + oItem.caption;
			value = oItem.id;
		}}
	);

	selCatDropDown.onchange = function(){
		var oItem = g_oPopupMenu.selectSingleItem(this.value);
		
		location.href = SMOMAbsoluteRootURL + oItem.url;
		
	};
};