var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1002", "BURG_X2W_C3_84CHTER", "/briefkaesten-burg-waechter/index.html", 1, "", 1, "");
addItem("10013", "Briefkasten_20Kunststoff", "/briefkaesten-burg-waechter/briefkasten-kunststoff/index.html", 2, "", 1, "");
addItem("10014", "Briefkasten_20Edelstahl", "/briefkaesten-burg-waechter/briefkaesten-edelstahl/index.html", 2, "", 1, "");
addItem("10015", "Briefkasten_20Alu_X2Guss", "/briefkaesten-burg-waechter/briefkaesten-alu-guss/index.html", 2, "", 1, "");
addItem("10016", "Briefkasten_20verzinkt", "/briefkaesten-burg-waechter/briefkaesten-verzinkt/index.html", 2, "", 1, "");
addItem("1006", "Standbriefkasten", "/briefkaesten-burg-waechter/standbriefkaesten-und-briefkastenanlagen/index.html", 2, "", 1, "");
addItem("10022", "Briefkastenanlage", "/briefkaesten-burg-waechter/briefkastenanlage/index.html", 2, "", 1, "");
addItem("1007", "CMD", "/cmd-briefkaesten-aussenleuchten-aussenlampen/index.html", 1, "", 1, "");
addItem("10020", "Briefk_C3_A4sten_20Edelstahl", "/cmd-briefkaesten-aussenleuchten-aussenlampen/briefkaesten-edelstahl/index.html", 2, "", 1, "");
addItem("10021", "Au_C3_9Fenlampen_20und_20Au_C3_9Fenleuchten", "/cmd-briefkaesten-aussenleuchten-aussenlampen/aussenlampen-aussenleuchten/index.html", 2, "", 1, "");
addItem("1009", "KNOBLOCH", "/max-knobloch-briefkaesten-und-mehr/index.html", 1, "", 1, "");
addItem("1008", "BLOMUS", "/blomus-briefkaesten-garten-und-wohnen/index.html", 1, "", 1, "");
addItem("10010", "KEILBACH", "/keilbach-briefkaesten/index.html", 1, "", 1, "");
addItem("10011", "BOBI", "/bobi-briefkaesten-und-briefkastenanlagen/index.html", 1, "", 1, "");
addItem("10017", "Briefkasten_20und_20Briefkastenanlage", "/bobi-briefkaesten-und-briefkastenanlagen/briefkaesten-und-briefkastenanlagen/index.html", 2, "", 1, "");
addItem("10018", "Standbriefkasten_20und_20Briefkastenanlage", "/bobi-briefkaesten-und-briefkastenanlagen/standbriefkaesten-und-briefkastenanlagen/index.html", 2, "", 1, "");
addItem("1005", "SONDERPOSTEN", "/sonderangebote-burg-waechter/index.html", 1, "", 1, "");
addItem("10025", "Ausverkauft", "/sonderangebote-burg-waechter/briefkasten-ausverkauft-briefkaesten/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;
		
	};
};