var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10025", "Orgonit_20Kegel", "/pi50/index.html", 1, "", 1, "");
addItem("10020", "Orgonit_20HHG", "/pi45/index.html", 1, "", 1, "");
addItem("10021", "Orgonit_X2Pyramiden", "/pi46/index.html", 1, "", 1, "");
addItem("10022", "Orgonit_X2Schmuck", "/pi47/index.html", 1, "", 1, "");
addItem("10023", "Orgonit_X2Energetisierung", "/pi48/index.html", 1, "", 1, "");
addItem("10024", "Orgonit_X2Kreationen", "/pi49/index.html", 1, "", 1, "");
addItem("10028", "Orgonit_X2Cloudbuster", "/pi53/index.html", 1, "", 1, "");
addItem("10032", "Orgonit_20Outdoor_20CB_22S", "/pi56/index.html", 1, "", 1, "");
addItem("1006", "Orgon_X2Energiest_C3_A4be", "/pi32/index.html", 1, "", 1, "");
addItem("10013", "Orgonakkumulator", "/pi38/index.html", 1, "", 1, "");
addItem("10031", "Orgonkissen", "/pi55/index.html", 1, "", 1, "");
addItem("1005", "Orgon_X2Pyramiden", "/pi31/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;
		
	};
};