var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "Neues_20Gartenwelt", "/neues/index.html", 1, "", 1, "");
addItem("1002", "Der_20Obstgarten", "/der-obstgarten/index.html", 1, "", 1, "");
addItem("1003", "Der_20Gem_C3_BCsegarten", "/der-gemuesegarten/index.html", 1, "", 1, "");
addItem("1004", "Der_20Gartenteich", "/der-gartenteich/index.html", 1, "", 1, "");
addItem("1005", "Das_20Gew_C3_A4chshaus", "/das-gewaechshaus/index.html", 1, "", 1, "");
addItem("1006", "Das_20Gartenhaus", "/das-gartenhaus/index.html", 1, "", 1, "");
addItem("1008", "Der_20Blumengarten", "/der-blumengarten/index.html", 1, "", 1, "");
addItem("1009", "Der_20Ziergarten", "/der-schmuckgarten/index.html", 1, "", 1, "");
addItem("10010", "Gartenm_C3_B6bel", "/gartenmoebel/index.html", 1, "", 1, "");
addItem("10011", "Gartendekoration", "/gartendekoration/index.html", 1, "", 1, "");
addItem("10012", "Gartentechnik", "/gartentechnik/index.html", 1, "", 1, "");
addItem("1007", "Der_20Sonstige_20Garten", "/der-sonstige-garten/index.html", 1, "", 1, "");
addItem("10013", "Gartenb_C3_BCcher", "/gartenbuecher/index.html", 1, "", 1, "");
addItem("10027", "Tierwelt", "/tierwelt/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;
		
	};
};