var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10016", "LIMDOR_20original!", "/pg41.htm", 1, "", 1, "_self");
addItem("1004", "Sonderangebote_20(5)", "/pi4/index.htm", 1, "", 1, "");
addItem("1005", "Reinigungsmittel_20_X7_20Kalkl_C3_B6ser", "/pi5/index.htm", 1, "", 1, "");
addItem("1001", "Haushalt_20(5)", "/pi5/pi1/index.htm", 2, "", 1, "");
addItem("1006", "Bad_20_X7_20WC_20(3)", "/pi5/pi6/index.htm", 2, "", 1, "");
addItem("10014", "Sportger_C3_A4te_20_X7_20Textilien_20(1)", "/pi5/pi14/index.htm", 2, "", 1, "");
addItem("10019", "Spar_X2Sets_20(4)", "/pi19/index.htm", 1, "", 1, "");
addItem("10010", "Spezialreiniger", "/pi10/index.htm", 1, "", 1, "");
addItem("1009", "Gewerbe_20_X7_20Technik_20(2)", "/pi10/pi9/index.htm", 2, "", 1, "");
addItem("10011", "Labor_20_X7_20Praxis_20(2)", "/pi10/pi11/index.htm", 2, "", 1, "");
addItem("1002", "Kunststoff_20_X2_20Fenster_20(2)", "/pi10/pi2/index.htm", 2, "", 1, "");
addItem("1008", "Photovoltaik_X2_20_X7_20Solaranlagen_20(3)", "/pi10/pi8/index.htm", 2, "", 1, "");
addItem("1003", "Microfaser_20(5)", "/pi3/index.htm", 1, "", 1, "");
addItem("10017", "GRATIS!_20(2)", "/pi17/pi17.htm", 1, "", 1, "_self");
addItem("10012", "Zubeh_C3_B6r_20(4)", "/pi12/index.htm", 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;
		
	};
};