var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1003", "STEVIA_20PRODUKTE", "/pi3/index.html", 1, "image001-large.gif", 1, "");
addItem("1001", "Aloe_20Vera", "/pi1/index.html", 1, "biosiegelklein-medium.gif", 1, "");
addItem("1002", "exclusiv_20in_20der_20Apotheke", "/pi2/index.html", 1, "biosiegelklein-medium.gif", 1, "");
addItem("1005", "COMPACT", "/pi5/index.html", 1, "compakt-logo-medium.jpg", 1, "");
addItem("1006", "CHAYA", "/pi6/index.html", 1, "achaya-endgueltiges-logo-kopie-large.png", 1, "");
addItem("1007", "MEDICUS", "/pi7/index.html", 1, "logo-medicus-medium.jpg", 1, "");
addItem("1008", "Peeling_20Handschuh", "/pi8/index.html", 1, "micropeeling-medium.jpg", 1, "");
addItem("1009", "Handelsmarken", "/pi9/index.html", 1, "cfrau-1-medium.jpg", 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;
		
	};
};