var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10011", "Preis_X2Hits_20_20_X2_20_20Sie_20sparen_X3_X3_X3", "/preis-hits/index.html", 1, "", 1, "");
addItem("1001", "adidas_20Uhren", "/adidas-uhren/index.html", 1, "adidas_logo_schwarz_klein.jpg", 1, "");
addItem("1002", "adidas_20L_X2Size", "/adidas-uhren/adidas-l-size/index.html", 2, "", 1, "");
addItem("1003", "adidas_20M_X2Size", "/adidas-uhren/adidas-m-size/index.html", 2, "", 1, "");
addItem("1004", "adidas_20Kid_X4Youth", "/adidas-uhren/adidas-kidyouth/index.html", 2, "", 1, "");
addItem("10012", "CASIO_20Uhren", "/casio-uhren/index.html", 1, "casio_logo.gif", 1, "");
addItem("10013", "Casio_20Baby_X2G", "/casio-uhren/casio-baby-g/index.html", 2, "", 1, "");
addItem("10014", "Casio_20G_X2Shock", "/casio-uhren/casio-g-shock/index.html", 2, "", 1, "");
addItem("10015", "Casio_20Edifice", "/casio-uhren/casio-edifice/index.html", 2, "", 1, "");
addItem("10016", "Casio_20Collection", "/casio-uhren/casio-collection/index.html", 2, "", 1, "");
addItem("1005", "NOMEA_20Motivuhren", "/nomea-motivuhren/index.html", 1, "nomea_logo_klein.jpg", 1, "");
addItem("10019", "optische_20Schwimmbrillen", "/optische-schwimmbrillen/index.html", 1, "gator_logo.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;
		
	};
};