var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10015", "Sonderangebote", "/aktionsangebote/index.html", 1, "", 1, "");
addItem("1003", "Low_20Carb", "/low-carb/index.html", 1, "", 1, "");
addItem("10033", "Erfahrungsberichte", "/low-carb/erfahrungsberichte/index.html", 2, "", 1, "");
addItem("1004", "Low_20Carb_20aus_20USA", "/low-carb/low-carb-aus-usa/index.html", 2, "", 1, "");
addItem("10011", "Backmischungen", "/low-carb/backmischungen/index.html", 2, "", 1, "");
addItem("10038", "Kuchen_20und_20Geb_C3_A4ck", "/low-carb/backmischungen/kuchen-und-kekse/index.html", 3, "", 1, "");
addItem("10039", "Brote_20und_20Pizza", "/low-carb/backmischungen/brote-und-pizza/index.html", 3, "", 1, "");
addItem("10016", "Fertigprodukte,_20Protein,_20Zutaten_20_20usw_X3", "/low-carb/fertigprodukte-protein-zutaten-usw/index.html", 2, "", 1, "");
addItem("10022", "Riegel", "/low-carb/riegel/index.html", 2, "", 1, "");
addItem("10023", "Getr_C3_A4nke", "/low-carb/getraenke/index.html", 2, "", 1, "");
addItem("10040", "Pressetexte", "/low-carb/pressetexte/index.html", 2, "", 1, "");
addItem("1007", "Nutrition", "/bodybuilding/index.html", 1, "", 1, "");
addItem("10037", "Bodystuff_20Nutrition", "/bodybuilding/supplements/index2.html", 2, "", 1, "");
addItem("1009", "Sonstige", "/bodybuilding/supplements/index.html", 2, "", 1, "");
addItem("10021", "Competition", "/posingwear-by-bodystuff/index.html", 1, "", 1, "");
addItem("1002", "Frauen", "/posingwear-by-bodystuff/frauen/index.html", 2, "", 1, "");
addItem("10032", "Schuhe", "/posingwear-by-bodystuff/frauen/schuhe/index.html", 3, "", 1, "");
addItem("1008", "M_C3_A4nner", "/posingwear-by-bodystuff/maenner/index.html", 2, "", 1, "");
addItem("10017", "Farbe", "/posingwear-by-bodystuff/fuer-den-wettkampf/index.html", 2, "", 1, "");
addItem("10014", "Vitamine_20und_20Mineralien", "/vitamine-und-mineralien/index.html", 1, "", 1, "");
addItem("10019", "B_C3_BCcher", "/low-carb/buecher/index.html", 1, "", 1, "");
addItem("10025", "Team_20Bodystuff", "/sponsoring-by-bodystuff/index.html", 1, "", 1, "");
addItem("10046", "FIBO_202008", "/sponsoring-by-bodystuff/fibo-2008/index.html", 2, "", 1, "");
addItem("1005", "Miroslava_22Micky_22_20Buchert", "/sponsoring-by-bodystuff/miroslavamicky-buchert/index.html", 2, "", 1, "");
addItem("10031", "Werner_20Zenk", "/sponsoring-by-bodystuff/werner-zenk/index.html", 2, "", 1, "");
addItem("10024", "Tobias_20_22Tobi_22_20R_C3_B6ssle", "/sponsoring-by-bodystuff/tobias-roessle/index.html", 2, "", 1, "");
addItem("10048", "Tobis_20News", "/sponsoring-by-bodystuff/tobias-roessle/tobis-news/index.html", 3, "", 1, "");
addItem("10041", "Michael_20Kohndrow", "/sponsoring-by-bodystuff/michael-kohndrow/index.html", 2, "", 1, "");
addItem("10047", "Reisebericht_20Vegas", "/sponsoring-by-bodystuff/michael-kohndrow/news/index.html", 3, "", 1, "");
addItem("10045", "Cordula_20von_20Keitz", "/sponsoring-by-bodystuff/cordula-von-keitz/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;
		
	};
};