var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10044", "Spielzeug_20_X2Drinnen", "/pi44/index.html", 1, "", 1, "");
addItem("10057", "Haushalt_20_X7_20Kaufladen", "/pi44/pi57/index.html", 2, "", 1, "");
addItem("10065", "Ritterburg_20_X7_20Schloss", "/pi44/pi65/index.html", 2, "", 1, "");
addItem("10046", "Spielzeug_20_X2Draussen", "/pi46/index.html", 1, "", 1, "");
addItem("10047", "Kinder_X2Fahrzeuge", "/pi46/pi47/index.html", 2, "", 1, "");
addItem("10058", "Schaukeln_20_X7_20Mehr", "/pi46/pi58/index.html", 2, "", 1, "");
addItem("10059", "Puppen_20_X7_20Mehr", "/pi59/index.html", 1, "", 1, "");
addItem("10026", "Musik_20_X7_20Instrumente", "/pi26/index.html", 1, "", 1, "");
addItem("10031", "Akkordeon_20_X7_20Mundharmonika", "/pi26/pi31/index.html", 2, "", 1, "");
addItem("10028", "Blockfl_C3_B6ten_20_X7_20Mehr", "/pi26/pi28/index.html", 2, "", 1, "");
addItem("10030", "Gitarren", "/pi26/pi30/index.html", 2, "", 1, "");
addItem("10043", "Musik_X2Sets", "/pi26/pi43/index.html", 2, "", 1, "");
addItem("10037", "Schellen_X2Instrumente", "/pi26/pi37/index.html", 2, "", 1, "");
addItem("10036", "Xylophone_20_X7_20Metallophone", "/pi26/pi36.html", 2, "", 1, "");
addItem("10060", "eitech_20_X7_20teifoc", "/pi60/index.html", 1, "", 1, "");
addItem("10061", "Metall_X2Baukasten_20CONSTRUCTION_20_X2_204_20bis_206_20Jahre", "/pi60/pi61/index.html", 2, "", 1, "");
addItem("10062", "Metall_X2Baukasten_20CONSTRUCTION_20_X2_206_20bis_208_20Jahre", "/pi60/pi62/index.html", 2, "", 1, "");
addItem("10056", "teifoc", "/pi60/pi56/index.html", 2, "", 1, "");
addItem("10066", "Lego", "/pi66/index.html", 1, "", 1, "");
addItem("10025", "Mehr", "/pi25/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;
		
	};
};