var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10046", "D_20_20_20_20a_20_20_20_20m_20_20_20_20e_20_20_20_20n", "/empty/index.html", 1, "", 1, "");
addItem("10031", "Maison_20Scotch", "/maison-scotch/index.html", 1, "", 1, "");
addItem("10045", "Winter2010", "/maison-scotch/winter2010/index.html", 2, "", 1, "");
addItem("10042", "Tigha_20Lederjacken", "/tigha-lederjacken/index.html", 1, "", 1, "");
addItem("10058", "Damenschuhe", "/damenschuhe/index.html", 1, "", 1, "");
addItem("10011", "Eject_20_X2_20Pops_20_X2_20Tiggers_20_20Damenschuhe", "/eject-damenschuhe/index.html", 1, "", 1, "");
addItem("10019", "El_20Natura_20Lista_20Damenschuhe", "/el-natura-lista/index.html", 1, "", 1, "");
addItem("10036", "El_20Naturalista_20Sommer_202010", "/el-natura-lista/el-naturalista-sommer-2010/index.html", 2, "", 1, "");
addItem("10037", "El_20Naturalista_20Winter_202010", "/el-natura-lista/el-naturalista-winter-2009/index.html", 2, "", 1, "");
addItem("10022", "Emu_20Naturally_20Australian_20Schuhe", "/emu/index.html", 1, "", 1, "");
addItem("10024", "Emu_20Damen", "/emu/emu-damen/index.html", 2, "", 1, "");
addItem("10059", "Manas_20Design", "/manas-design/index.html", 1, "", 1, "");
addItem("10056", "_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2_X2", "/empty6/index.html", 1, "", 1, "");
addItem("10047", "K_20i_20_20d_20_20s", "/kids/index.html", 1, "", 1, "");
addItem("10057", "Airfield_20YG_20Winter_202010", "/airfield-yg-winter-2010/index.html", 1, "", 1, "");
addItem("10020", "Bitte_20nicht_20rosa", "/bitte-nicht-rosa/index.html", 1, "", 1, "");
addItem("10043", "Club_20des_20Sports_20Kids", "/club-des-sports-kids/index.html", 1, "", 1, "");
addItem("10023", "Emu_20Kids", "/emu-kids/index.html", 1, "", 1, "");
addItem("10021", "Parajumpers_20Kids", "/parajumpers-kids/index.html", 1, "", 1, "");
addItem("10012", "Replay_20Kids", "/replay-kids/index.html", 1, "", 1, "");
addItem("10013", "Replay_20M_C3_A4dchen", "/replay-kids/replay-maedchen/index.html", 2, "", 1, "");
addItem("10018", "Replay_20Jungen", "/replay-kids/replay-jungen/index.html", 2, "", 1, "");
addItem("10010", "Scotch_20_X7_20Soda_20Kids", "/scotch-soda-kids/index.html", 1, "", 1, "");
addItem("10034", "Scotch_20_X1_20Soda_20Winter_202010", "/scotch-soda-kids/winter-2009/index.html", 2, "", 1, "");
addItem("10041", "Smileyworld_20Vintage", "/smileyworld-vintage/index.html", 1, "", 1, "");
addItem("10029", "Stones_20and_20Bones_20Kinderschuhe", "/stones-and-bones-kinderschuhe/index.html", 1, "", 1, "");
addItem("10032", "Kommunion", "/kommunion/index.html", 1, "", 1, "");
addItem("10025", "ADD_20Jacken", "/add-jacken/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;
		
	};
};