var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10012", "SOLAMAGIC_20500", "/solamagic-500w/index.html", 1, "", 1, "");
addItem("1002", "SOLAMAGIC_201000", "/solamagic-1000w/index.html", 1, "", 1, "");
addItem("1003", "SOLAMAGIC_201400_20ECO_X1", "/solamagic-1400w/index.html", 1, "", 1, "");
addItem("1004", "SOLAMAGIC_202000_20ECO_X1", "/solamagic-2000w/index.html", 1, "", 1, "");
addItem("1005", "SOLAMAGIC_202800_20ECO_X1", "/solamagic-2800w/index.html", 1, "", 1, "");
addItem("10018", "SOLAMAGIC_204000_20ECO_X1", "/solamagic-4000w/index.html", 1, "", 1, "");
addItem("1007", "SOLAMAGIC_20Gastroline", "/gastronomie/index.html", 1, "", 1, "");
addItem("10051", "Infrarot_20Heizstrahler", "/gastronomie/infrarot-heizstrahler/index.html", 2, "", 1, "");
addItem("10052", "Solamagic_20Sundowner", "/gastronomie/sundowner/index.html", 2, "", 1, "");
addItem("10053", "Sonnenschirml_C3_B6sung", "/gastronomie/sonnenschirmloesung/index.html", 2, "", 1, "");
addItem("10054", "Licht_X2W_C3_A4rme_X2Kombi", "/gastronomie/licht-waerme-kombi/index.html", 2, "", 1, "");
addItem("10055", "All_X2in_X2one_201400", "/gastronomie/licht-waerme-kombi/all-in-one-1400w/index.html", 3, "", 1, "");
addItem("10056", "Kombination_202800", "/gastronomie/licht-waerme-kombi/kombination-1400w/index.html", 3, "", 1, "");
addItem("10057", "Kombination_204000", "/gastronomie/licht-waerme-kombi/kombination-2000w/index.html", 3, "", 1, "");
addItem("10058", "Licht_X2W_C3_A4rme_X2Sound", "/gastronomie/licht-waerme-kombi/kombination-licht-waerme-ton/index.html", 3, "", 1, "");
addItem("10027", "Licht_X2W_C3_A4rme_X2Werbung", "/gastronomie/licht-waerme-kombi/licht-waerme-werbung/index.html", 3, "", 1, "");
addItem("10029", "SOLAMAGIC_20Gro_C3_9Fstrahler", "/gewerbe-industrie/index.html", 1, "", 1, "");
addItem("10013", "Zubeh_C3_B6r", "/zubehoer/index.html", 1, "", 1, "");
addItem("10022", "Halterungen", "/halterungen/index.html", 1, "", 1, "");
addItem("10049", "W_C3_A4rme_X2Lichtkombination", "/waerme-lichtkombination/index.html", 1, "", 1, "");
addItem("10048", "Kombination_X2all_X2in_X2one", "/waerme-lichtkombination/licht-waerme-all-in-one/index.html", 2, "", 1, "");
addItem("10026", "Kombination_X22800", "/waerme-lichtkombination/licht-waerme-kombination/index.html", 2, "", 1, "");
addItem("10050", "Kombination_X24000_20ECO_X1", "/waerme-lichtkombination/licht-waerme-2000-watt/index.html", 2, "", 1, "");
addItem("10047", "Licht_X2W_C3_A4rme_X2Sound_20ECO_X1", "/licht-waerme-lautsprecher/index.html", 1, "", 1, "");
addItem("10024", "Markisen_X2Beleuchtung", "/solamagic-lichtboard/index.html", 1, "", 1, "");
addItem("10023", "Schirm_X2Beleuchtung", "/schirm-beleuchtung/index.html", 1, "", 1, "");
addItem("10032", "Designerleuchten", "/wohnraumleuchten/index.html", 1, "", 1, "");
addItem("10034", "Alaska", "/wohnraumleuchten/alaska/index.html", 2, "", 1, "");
addItem("10035", "Costa_20Rica", "/wohnraumleuchten/costa-rica/index.html", 2, "", 1, "");
addItem("10036", "Dragon", "/wohnraumleuchten/dragon/index.html", 2, "", 1, "");
addItem("10037", "Iceland", "/wohnraumleuchten/iceland/index.html", 2, "", 1, "");
addItem("10042", "Rio", "/wohnraumleuchten/rio/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;
		
	};
};