var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10031", "NADH_20_X2_20Produkte", "/nadh-produkte/index.html", 1, "", 1, "_self");
addItem("10019", "NADH_20Pur_20_X4_20NADH_20Brench", "/nadh-produkte/nadh-pur/index.html", 2, "", 1, "_self");
addItem("10020", "NADH_20_20Prof_X3_20Birkmayer", "/nadh-produkte/nadh-prof-birkmayer/index.html", 2, "", 1, "_self");
addItem("10040", "NADH_20_X2_20Komplex", "/nadh-produkte/nadh-komplex/myenergy-nadh-60-kapseln.html", 2, "", 1, "_self");
addItem("10036", "F_20_X7_20A_20zu_20NADH", "/nadh-produkte/fragen-antworten-zu-nadh/index.html", 2, "", 1, "_self");
addItem("10032", "Roter_20Ginseng", "/roter-ginseng/index.html", 1, "", 1, "_self");
addItem("10044", "Roter_20Ginseng_20Pur", "/roter-ginseng/roter-ginseng-pur/index.html", 2, "", 1, "_self");
addItem("10043", "Roter_20Ginseng_20BIO_20kbA", "/roter-ginseng/roter-ginseng-bio-kba/roter-ginseng.html", 2, "", 1, "_self");
addItem("10027", "Antioxidantien_X4Anti_X2Aging", "/antioxidantien/index.html", 1, "", 1, "_self");
addItem("10028", "Gehirn_20Ged_C3_A4chtnis_20Psyche", "/gehirnnahrung/index.html", 1, "", 1, "_self");
addItem("10033", "Aminos_C3_A4uren", "/aminosaeuren/index.html", 1, "", 1, "_self");
addItem("10048", "AFA_20Spirulina_20Chlorella", "/spirulina-chlorella-afa-algen/index.html", 1, "", 1, "_self");
addItem("10022", "Omega_X23_20Fisch_C3_B6l", "/fischoel-omega-3/index.html", 1, "", 1, "_self");
addItem("10045", "Kurkuma_20(Curcumin)", "/curcumin/index.html", 1, "", 1, "_self");
addItem("10024", "Coenzym_20Q10", "/co-enzym-q10/index.html", 1, "", 1, "_self");
addItem("10038", "Ginkgo_20Biloba", "/ginkgo-biloba/index.html", 1, "", 1, "_self");
addItem("10017", "MACA", "/maca/index.html", 1, "", 1, "_self");
addItem("1005", "Guarana_20_X1_20Coca", "/guarana/index.html", 1, "", 1, "_self");
addItem("10039", "Kalzium_X1Magnesium", "/calciummagnesium/index.html", 1, "", 1, "_self");
addItem("10042", "Vitalpilze", "/vitalpilze/index.html", 1, "", 1, "_self");
addItem("10047", "Aloe_20Vera_20_X1_20Noni", "/aloe-vera-noni/index.html", 1, "", 1, "_self");
addItem("10034", "nat_C3_BCrliche_20Vitalstoffe", "/natuerliche-vitalstoffe/index.html", 1, "", 1, "_self");
addItem("10046", "Zeolith_20(TmaZ)", "/zeolith-tmaz/index.html", 1, "", 1, "_self");
addItem("10041", "Stabilisierter_20Sauerstoff", "/stabilisierter-sauerstoff/index.html", 1, "", 1, "_self");
addItem("10015", "Jiaogulan_20und_20mehr_X3_X3_X3", "/jiaogulan-produkte/index.html", 1, "", 1, "_self");
addItem("10049", "Sonderangebote", "/sonderangebote/index.html", 1, "", 1, "_self");
};

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;
		
	};
};