var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "Wollvlies_20(48)", "/wollvlies/index.shtml", 1, "", 1, "");
addItem("1006", "Wollvlies_20Bergschaf_20(2)", "/wollvlies/bergschaf/index.shtml", 2, "", 1, "");
addItem("1007", "Wollvlies_20Naturt_C3_B6ne_20(9)", "/wollvlies/natur/index.shtml", 2, "", 1, "");
addItem("1008", "Wollvlies_20Kunterbunt_20gef_C3_A4rbt_20(11)", "/wollvlies/kunterbund/index.shtml", 2, "", 1, "");
addItem("1009", "Wollvlies_20Melangen_20(26)", "/wollvlies/melangen/index.shtml", 2, "", 1, "");
addItem("1003", "Kammz_C3_BCge_20(49)", "/kammzuege/index.shtml", 1, "", 1, "");
addItem("10010", "Australischer_20Merino_20Kammzug_20(36)", "/kammzuege/austr_merino/index.shtml", 2, "", 1, "");
addItem("10011", "Deutscher_20Kammzug_20(2)", "/kammzuege/deutscher_kammzug/index.shtml", 2, "", 1, "");
addItem("10012", "S_C3_BCdamerikanischer_20Kammzug_20(1)", "/kammzuege/sueda_kammzug/index.shtml", 2, "", 1, "");
addItem("10013", "Spanischer_20Kammzug_20(2)", "/kammzuege/span_kammzug/index.shtml", 2, "", 1, "");
addItem("10014", "Skandinavischer_20Kammzug_20(1)", "/kammzuege/skan_kammzug6/index.shtml", 2, "", 1, "");
addItem("10022", "Mehrfarbige_20Kammz_C3_BCge_20(7)", "/kammzuege/mehrfarbige_kammzuege/index.shtml", 2, "", 1, "");
addItem("10019", "Mischpackungen_20(6)", "/mischpackungen/index.shtml", 1, "", 1, "");
addItem("10030", "Handstrickgarne_20(23)", "/handstrickgarne/index.shtml", 1, "", 1, "");
addItem("10032", "Wollmelangen_20(13)", "/handstrickgarne/wollmelangen/index.shtml", 2, "", 1, "");
addItem("10033", "Tweet_X2_20und_20Trachtengarne_20(6)", "/handstrickgarne/tweet-und-trachtengarne/index.shtml", 2, "", 1, "");
addItem("10034", "Strumpf_X2_20und_20Sockenwolle_20(4)", "/handstrickgarne/strumpf-und-sockenwolle/index.shtml", 2, "", 1, "");
addItem("10018", "Haare_X4Seide_20(15)", "/haareseide/index.shtml", 1, "", 1, "");
addItem("10024", "Filztaschen_20(22)", "/industriefilzprodukte/index.shtml", 1, "", 1, "");
addItem("10025", "Filzpantoffeln_20(2)", "/industriefilzprodukte/hausschuhe-pantoffeln/index.shtml", 2, "", 1, "");
addItem("10026", "Filzascessoires_20(5)", "/industriefilzprodukte/ascessoires/index.shtml", 2, "", 1, "");
addItem("10027", "Filztaschen_20(15)", "/industriefilzprodukte/taschen/index.shtml", 2, "", 1, "");
addItem("10028", "M_C3_B6bel", "/http://holzwerk-produkte.de", 2, "", 1, "_blank");
addItem("1005", "Filznadeln_X4Zubeh_C3_B6r_20(4)", "/filznadeln/index.shtml", 1, "", 1, "");
addItem("1004", "Filzliteratur_20(4)", "/filzliteratur/index.shtml", 1, "", 1, "");
addItem("10029", "Sonderposten_20(10)", "/sonderposten/sonderposten.shtml", 1, "", 1, "");
addItem("10035", "Aktionen", "/aktionen.shtml", 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;
		
	};
};