var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "Desinfektion_20f_C3_BCr_20Oberfl_C3_A4chen_20(8)", "/pi1/index.html", 1, "", 1, "");
addItem("1004", "Desinfektion_20Pandemieprophylaxe_20(3)", "/pi1/pi4/index.html", 2, "", 1, "");
addItem("10012", "Desinfektion_20f_C3_BCr_20Wasser_20(4)", "/pi12/index.html", 1, "", 1, "");
addItem("1003", "Desinfektion_20_X2_20Hilfsmittel_20(6)", "/pi3/index.html", 1, "", 1, "");
addItem("1002", "Schimmelbek_C3_A4mpfung_20(12)", "/pi2/index.html", 1, "", 1, "");
addItem("1005", "Schimmelanalysen_20(1)", "/pi5/index.html", 1, "", 1, "");
addItem("1007", "Messinstrumente_20(Feuchte)_20(3)", "/pi7/index.html", 1, "", 1, "");
addItem("1006", "Luftentfeuchter_20_X7_20Luftfilter_20(5)", "/pi6/index.html", 1, "", 1, "");
addItem("1008", "Desinfektionsreiniger_20(4)", "/pi8/index.html", 1, "", 1, "");
addItem("1009", "Aktivschaumreiniger_20(3)", "/pi9/index.html", 1, "", 1, "");
addItem("10010", "Enzymprodukte_20(4)", "/pi10/index.html", 1, "", 1, "");
addItem("10013", "Geruchsneutralisation_20(2)", "/pi13/index.html", 1, "", 1, "");
addItem("10011", "Applikations_20_X7_20Spr_C3_BChger_C3_A4te_20(6)", "/pi11/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;
		
	};
};