var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10030", "Plug_20and_20Play_20Saunen", "/plug-and-play-saunen/index.html", 1, "", 1, "");
addItem("1001", "System_20Saunen_2068_20mm", "/saunen-68-mm/index.html", 1, "", 1, "");
addItem("1002", "Massiv_20Saunen_2040_20mm", "/saunen-40-mm/index.html", 1, "", 1, "");
addItem("1003", "Premium_20Saunen", "/premium-saunen-40-mm/index.html", 1, "", 1, "");
addItem("1004", "Saunah_C3_A4user", "/saunahaeuser/index.html", 1, "", 1, "");
addItem("10028", "Fl_C3_A4chenw_C3_A4rmekabinen_20ECO", "/flaechenwaermekabinen-eco/index.html", 1, "", 1, "");
addItem("1006", "Infrarotkabinen_20Classic", "/infrarotkabinen/index.html", 1, "", 1, "");
addItem("1007", "Infrarotkabinen_20Premium", "/flaechenwaermekabinen/index.html", 1, "", 1, "");
addItem("1008", "_C3_96fen_20und_20Strahler", "/oefen/index.html", 1, "", 1, "");
addItem("1009", "Zubeh_C3_B6r", "/zubehoer/index.html", 1, "", 1, "");
addItem("10012", "K_C3_BCbel_20_X7_20Kellen", "/zubehoer/kuebel-kellen/index.html", 2, "", 1, "");
addItem("10031", "Rund_20ums_20Salz", "/zubehoer/rund-ums-salz/index.html", 2, "", 1, "");
addItem("10013", "B_C3_A4nke,_20T_C3_BCren_20_X7_20Fenster", "/zubehoer/baenke-tueren-fenster/index.html", 2, "", 1, "");
addItem("10015", "Sanduhren_20_X7_20Hygrometer", "/zubehoer/sanduhren-hygrometer/index.html", 2, "", 1, "");
addItem("10016", "Licht,_20Lampen_20_X7_20Audio", "/zubehoer/licht-lampen/index.html", 2, "", 1, "");
addItem("10017", "Pflege_20und_20D_C3_BCfte", "/zubehoer/mellis-pflege/index.html", 2, "", 1, "");
addItem("10019", "Karipool_20Holzpools", "/karipool-holzpools/index.html", 1, "", 1, "");
addItem("10020", "Zubeh_C3_B6r_20f_C3_BCr_20Pools", "/karipool-holzpools/zubehoer-fuer-pools/index.html", 2, "", 1, "");
addItem("10021", "Karibu_20Carports", "/http://www.gamoni.de/karibu-carports/index.html", 1, "", 1, "_blank");
addItem("10022", "Terrassen_C3_BCberdachungen", "/http://www.gamoni.de/karibu-gartenhaeuser2/index.html", 1, "", 1, "_blank");
addItem("10023", "Karibu_20Gartenh_C3_A4user", "/http://www.gamoni.de/karibu-gartenhaeuser2/index.html", 1, "", 1, "_blank");
addItem("10024", "Karibu_20Spielh_C3_A4user", "/http://www.gamoni.de/kinderwelt/index.html", 1, "", 1, "_blank");
};

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;
		
	};
};