var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "Aktionsangebote", "/aktionsangebote/index.html", 1, "", 1, "");
addItem("1004", "Golf", "/golf/index.html", 1, "", 1, "");
addItem("10030", "Golfanf_C3_A4nger", "/golf/golfanfaenger/index.html", 2, "", 1, "");
addItem("1009", "Golfschl_C3_A4ger", "/golf/golfschlaeger/index.html", 2, "", 1, "");
addItem("10012", "Golfb_C3_A4lle", "/golf/golfbaelle/index.html", 2, "", 1, "");
addItem("10010", "Golfhandschuhe", "/golf/golfhandschuhe/index.html", 2, "", 1, "");
addItem("10011", "Golfschuhe", "/golf/golfschuhe/index.html", 2, "", 1, "");
addItem("10017", "Golfbekleidung", "/golf/golfbekleidung/index.html", 2, "", 1, "");
addItem("10013", "Golfbags", "/golf/golfbags/index.html", 2, "", 1, "");
addItem("10014", "Trolleys", "/golf/trolleys/index.html", 2, "", 1, "");
addItem("10032", "Elektrotrolleys", "/golf/elektrotrolleys/index.html", 2, "", 1, "");
addItem("10031", "Golftrolley_20Zubeh_C3_B6r", "/golf/elektrotrolleys/zubehoer/index.html", 3, "", 1, "");
addItem("10025", "Golfern_C3_A4hrung", "/golf/golfernaehrung/index.html", 2, "", 1, "");
addItem("10015", "Trainingshilfen", "/golf/trainingshilfen/index.html", 2, "", 1, "");
addItem("10016", "B_C3_BCcher_20und_20Medien", "/golf/buecher-und-medien/index.html", 2, "", 1, "");
addItem("10026", "Die_20sch_C3_B6nsten_20Golfpl_C3_A4tze_20der_20Welt", "/golf/die-schoensten-golfplaetze-der-welt/index.html", 2, "", 1, "");
addItem("10018", "Golfgeschenke", "/golf/golfgeschenke/index.html", 2, "", 1, "");
addItem("10028", "Geschenke", "/weihnachtsgeschenke/index.html", 1, "", 1, "");
addItem("1002", "Events_20_X7_20Reisen", "/events-und-reisen/index.html", 1, "", 1, "");
addItem("1006", "Digital_20Lifestyle", "/digital-lifestyle/index.html", 1, "", 1, "");
addItem("10023", "Online_20Telefon_20TV_20Mobile", "/digital-lifestyle/online-telefon-tv-mobile/index.html", 2, "", 1, "");
addItem("10024", "LCD_X2,_20LED_X2,_20Plasma_X2TV,_20Cameras,_20Video", "/digital-lifestyle/lcd-led-plasma-tv-cameras-video/index.html", 2, "", 1, "");
addItem("10027", "Software", "/digital-lifestyle/software/index.html", 2, "", 1, "");
addItem("1003", "Weine_20_X7_20Spirituosen", "/weine-spirituosen/index.html", 1, "", 1, "");
addItem("10019", "Cognac", "/weine-spirituosen/cognac/index.html", 2, "", 1, "");
addItem("1005", "Fashion_20_X7_20Style", "/fashion/index.html", 1, "", 1, "");
addItem("10021", "Damenmode", "/fashion/damenmode/index.html", 2, "", 1, "");
addItem("10020", "Herrenmode", "/fashion/herrenmode/index.html", 2, "", 1, "");
addItem("10022", "Kinder_20_X7_20Jugendliche", "/fashion/kinder-jugendliche/index.html", 2, "", 1, "");
addItem("1007", "Dr_X3_20Dotzler_20Medien", "/dr-dotzler-medieninstitut/index.html", 1, "", 1, "");
addItem("1008", "Affiliate_20Outletstore", "/affiliate-outletstore/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;
		
	};
};