var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10027", "Artemien_X4Zubeh_C3_B6r", "/artemia/index.html", 1, "", 1, "");
addItem("10016", "Filter,_20innen", "/innenfilter/index.html", 1, "", 1, "");
addItem("10019", "Futter", "/zierfischfutter/index.html", 1, "", 1, "");
addItem("10041", "Luftverteilung", "/luftverteilung/index.html", 1, "", 1, "");
addItem("10052", "Pumpen,_20Luft", "/luftpumpen/index.html", 1, "", 1, "");
addItem("10054", "Pumpen,_20Wasser", "/wasserpumpen/index.html", 1, "", 1, "");
addItem("10047", "Regelheizer", "/regelheizer/index.html", 1, "", 1, "");
addItem("10048", "Schl_C3_A4uche_X4Zubeh_C3_B6r", "/schlaeuche-und-zubehoer/index.html", 1, "", 1, "");
addItem("10050", "Zubeh_C3_B6r:_20Technik", "/zubehoer-technik/index.html", 1, "", 1, "");
addItem("10051", "Zubeh_C3_B6r:_20Verbrauchsmaterial", "/zubehoer-verbrauchsmaterial/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;
		
	};
};