var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "PARADISE_20COCKTAILS", "/paradise-cocktails/index.html", 1, "", 1, "");
addItem("10013", "Mixanleitung", "/paradise-cocktails/mixanleitung/index.html", 2, "", 1, "");
addItem("10017", "CAIPIRINHA", "/caipirinha-do-brasil/index.html", 1, "", 1, "");
addItem("10014", "CACHAQA", "/cachaca-chapeu-de-palha/index.html", 1, "", 1, "");
addItem("10016", "AGWA_20de_20BOLIVIA", "/agwa-kokalikoer/index.html", 1, "", 1, "");
addItem("10015", "AGWA_20in_20der_20Presse", "/agwa-kokalikoer/agwa-in-der-presse/index.html", 2, "", 1, "");
addItem("10011", "AGWA_20Cocktails", "/agwa-kokalikoer/agwa-cocktails/index.html", 2, "", 1, "");
addItem("1003", "BARBEDARF", "/barbedarf/index.html", 1, "", 1, "");
addItem("1004", "EIS_X2CRUSHER", "/eis-crusher/index.html", 1, "", 1, "");
addItem("1007", "GRANITOREN", "/granitoren/index.html", 1, "", 1, "");
addItem("10021", "BARMIXER", "/barmixer/index.html", 1, "", 1, "");
addItem("10020", "Mixer_20_20M_2098_20T", "/barmixer/mixer-m-98-t/index.html", 2, "", 1, "");
addItem("10019", "Mixer_20M_2098", "/barmixer/mixer-m-98/index.html", 2, "", 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;
		
	};
};