var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10019", "purjee!s_20f_C3_BCr_20Frauen", "/pi20/index.html", 1, "", 1, "");
addItem("10018", "sportliche_20purjee!s", "/pi20/pi19/index.html", 2, "", 1, "");
addItem("1005", "klassische_20purjee!s", "/pi20/pi5/index.html", 2, "", 1, "");
addItem("1001", "elegante_20purjee!s", "/pi20/pi1/index.html", 2, "", 1, "");
addItem("10017", "purjee!s_20f_C3_BCr_20M_C3_A4dchen", "/pi18/index.html", 1, "", 1, "");
addItem("10041", "Unser_20Dauerspezial", "/pi42/index.html", 1, "", 1, "");
addItem("10042", "Unser_20Fr_C3_BChlingsspezial", "/pi43/index.html", 1, "", 1, "");
addItem("1003", "purjee!s_20als_20Geschenk", "/pi3/index.html", 1, "", 1, "_parent");
addItem("10020", "Geschenkverpackung", "/pi3/pi21/index.html", 2, "", 1, "");
addItem("1008", "Wissenswertes_20rund_20um_20purjee!", "/pi9/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;
		
	};
};