var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("100223", "Flyer_20Beauty_20_X7_20Wellness", "/flyer-schoenheit-gesundheit/index.html", 1, "", 1, "");
addItem("100222", "Flyer_20B_C3_A4ckerei", "/flyer-baeckerei/index.html", 1, "", 1, "");
addItem("100216", "Flyer_20Neuer_C3_B6ffnung", "/neueroeffnung-alle-branchen/index.html", 1, "", 1, "");
addItem("100214", "Flyer_20Neuer_C3_B6ffnung_20B_C3_A4ckerei", "/baeckerei-flyer/index.html", 1, "", 1, "");
addItem("100221", "Flyer_20Imbiss_20_X4_20Gastronomie", "/flyer-imbiss-gastronomie/index.html", 1, "", 1, "");
addItem("100217", "Flyer_20Jubil_C3_A4um", "/jubilaeum/index.html", 1, "", 1, "");
addItem("100218", "Flyer_20Textilpflege", "/textilpflege/index.html", 1, "", 1, "");
addItem("100220", "Flyer_20R_C3_A4umungsverkauf", "/flyer-raeumungsverkauf/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;
		
	};
};