var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "Freude_20am_20Laufen", "/freude-am-laufen/index.html", 1, "", 1, "");
addItem("1005", "XCO_20Walking_20_X7_20Running", "/freude-am-laufen/xco-walking-running/index.html", 2, "", 1, "");
addItem("10021", "Sicherheit,_20Beleuchtung", "/freude-am-laufen/sicherheit-beleuchtung/index.html", 2, "", 1, "");
addItem("10030", "Sonstige_20Produkte", "/freude-am-laufen/sonstige-produkte/index.html", 2, "", 1, "");
addItem("1002", "Kraft_20und_20Muskeln", "/kraft-und-muskeln/index.html", 1, "", 1, "");
addItem("1006", "XCO_20Fitness_X2Trainer", "/kraft-und-muskeln/xco-fitness-trainer/index.html", 2, "", 1, "");
addItem("10031", "Sonstige_20Produkte", "/kraft-und-muskeln/sonstige-produkte/index.html", 2, "", 1, "");
addItem("10022", "Gymnastik_20und_20Bewegung", "/gymnastik-und-bewegung/index.html", 1, "", 1, "");
addItem("10041", "Flexi_X2Sports_20Softtools", "/gymnastik-und-bewegung/flexi-sports-softtools/index.html", 2, "", 1, "");
addItem("10042", "Flexi_X2Sports_20Flexi_X2Bar", "/gymnastik-und-bewegung/flexi-sports-flexi-bar/index.html", 2, "", 1, "");
addItem("10013", "Nahrungserg_C3_A4nzung", "/nahrungsergaenzung/index.html", 1, "", 1, "");
addItem("10017", "Eiweiss_X2Pulver,_20Proteine", "/nahrungsergaenzung/eiweiss_protein/index.html", 2, "", 1, "");
addItem("10037", "Weight_20Gainer", "/nahrungsergaenzung/weight-gainer/index.html", 2, "", 1, "");
addItem("10028", "Aminos,_20Creatin,_20BCAA", "/nahrungsergaenzung/aminos-creatin-bcaa/index.html", 2, "", 1, "");
addItem("10018", "Vitamine,_20Mineralstoffe", "/nahrungsergaenzung/vitamine-mineralstoffe/index.html", 2, "", 1, "");
addItem("10020", "Spirulina_20Algen,_20Omega3", "/nahrungsergaenzung/spirulina-algen-omega3/index.html", 2, "", 1, "");
addItem("10039", "Di_C3_A4t,_20Gewichtskontrolle", "/nahrungsergaenzung/diaet-gewichtskontrolle/index.html", 2, "", 1, "");
addItem("1004", "B_C3_BCcher_20und_20Multimedia", "/buecher-und-multimedia/index.html", 1, "", 1, "");
addItem("1007", "B_C3_BCcher", "/buecher-und-multimedia/buecher/index.html", 2, "", 1, "");
addItem("1008", "DVDs", "/buecher-und-multimedia/dvds/index.html", 2, "", 1, "");
addItem("10010", "Software", "/buecher-und-multimedia/software/index.html", 2, "", 1, "");
addItem("10027", "Sport_20und_20Technik", "/sport-und-technik/index.html", 1, "", 1, "");
addItem("10036", "Sonstige_20Messger_C3_A4te", "/sport-und-technik/sonstige-messgeraete/index.html", 2, "", 1, "");
addItem("1003", "N_C3_BCtzliches_20Zubeh_C3_B6r", "/nuetzliches-zubehoer/index.html", 1, "", 1, "");
addItem("10029", "Trinkflaschen_20und_20Zubeh_C3_B6r", "/nuetzliches-zubehoer/trinkflaschen-und-zubehoer/index.html", 2, "", 1, "");
addItem("10045", "Shaker_20f_C3_BCr_20Eiwei_C3_9F_X2Drinks", "/nuetzliches-zubehoer/shaker-fuer-eiweiss-drinks/index.html", 2, "", 1, "");
addItem("10044", "Pillendosen_20und_20Boxen", "/nuetzliches-zubehoer/tabletten-boxen-pillendosen/index.html", 2, "", 1, "");
addItem("10040", "Pflege_20und_20Reinigung", "/nuetzliches-zubehoer/pflege-und-reinigung/index.html", 2, "", 1, "");
addItem("10038", "Batterien,_20Akkus,_20Strom", "/nuetzliches-zubehoer/batterien-akkus-strom/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;
		
	};
};