var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "Paket_20by_20maxx_X2paketdienst_X3de", "/sperrgut-versand/index.html", 1, "", 1, "");
addItem("1005", "Maxx_20Sperrgut_20Paket_20bis_2010_20kg", "/sperrgut-versand/sperrgut-paket-bis-10-kg/index.html", 2, "", 1, "");
addItem("1006", "Maxx_20Sperrgut_20Paket_20bis_2020_20kg", "/sperrgut-versand/sperrgut-paket-bis-20-kg/index.html", 2, "", 1, "");
addItem("1007", "Maxx_20Sperrgut_20Paket_20bis_2030_20kg", "/sperrgut-versand/sperrgut-paket-bis-30-kg/index.html", 2, "", 1, "");
addItem("10010", "Maxx_20Sperrgut_20Paket_20bis_2040_20kg", "/sperrgut-versand/maxx-sperrgut-paket-bis-40-kg/index.html", 2, "", 1, "");
addItem("1004", "Sperrgut_20Transport_20(Palette)", "/sperrgut-transport/index.html", 1, "", 1, "");
addItem("1002", "Sperrgut_20Versand_20Karton", "/sperrgut-versenden/index.html", 1, "", 1, "");
addItem("1003", "Paketversand_20Services", "/sperrgutversand/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;
		
	};
};