var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10019", "Alle_20Produkte", "/alle-produkte2/index.html", 1, "", 1, "");
addItem("10021", "Alle_20eBooks", "/alle-produkte-in-ebooks/index.html", 1, "", 1, "");
addItem("10022", "Alle_20H_C3_B6rb_C3_BCcher", "/alle-hoerbuch-downloads/index.html", 1, "", 1, "");
addItem("1002", "Ziele", "/mehr-ziele/index.html", 1, "", 1, "");
addItem("1007", "Geld", "/geld/index.html", 1, "", 1, "");
addItem("1008", "Liebe", "/liebe/index.html", 1, "", 1, "");
addItem("1009", "Gesundheit", "/gesundheit/index.html", 1, "", 1, "");
addItem("10010", "Lebenserfolg", "/lebenserfolg/index.html", 1, "", 1, "");
addItem("10012", "Selbsterkenntnis", "/selbsterkenntnis/index.html", 1, "", 1, "");
addItem("10013", "Entfaltung", "/entfaltung/index.html", 1, "", 1, "");
addItem("10020", "Lernen", "/lernen/index.html", 1, "", 1, "");
addItem("10015", "Mentaltraining", "/mentaltraining/index.html", 1, "", 1, "");
addItem("10017", "Meditation", "/meditation/index.html", 1, "", 1, "");
addItem("10023", "Geschenkgutschein", "/geschenkgutschein/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;
		
	};
};