var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10065", "Unicorn_20Steeldart", "/steeldart/index.html", 1, "", 1, "");
addItem("10073", "Tungsten_20Steeldart", "/steeldart/unicorn-tungsten-steeldart/index.html", 2, "", 1, "");
addItem("10074", "Brass_20Steeldart", "/steeldart/brass/index.html", 2, "", 1, "");
addItem("10072", "Stainless_20Steel_20Steeldart", "/steeldart/unicorn-stainless-steel/index.html", 2, "", 1, "");
addItem("10068", "Bull_X9s_20Steeldart", "/bulls-steeldart/index.html", 1, "", 1, "");
addItem("10066", "Unicorn_20Softdart", "/softdart/index.html", 1, "", 1, "");
addItem("10070", "Tungsten_20Softdart", "/softdart/bulls-softdart/index.html", 2, "", 1, "");
addItem("10071", "Brass_20Softdart", "/softdart/unicorn-softdart/index.html", 2, "", 1, "");
addItem("10078", "Stainless_20Steel_20Softdart", "/softdart/stainless-steel-softdart/index.html", 2, "", 1, "");
addItem("10077", "Bull_X9s_20Softdart", "/bulls-softdart/index.html", 1, "", 1, "");
addItem("10067", "Dartboard", "/dartboard/index.html", 1, "", 1, "");
addItem("10080", "Bristle_20Dartboard", "/dartboard/klassische-dartboard/index.html", 2, "", 1, "");
addItem("10081", "Elektronische_20Dartboard", "/dartboard/elektronische-dartboard/index.html", 2, "", 1, "");
addItem("10082", "Dartboard_20Kabinette", "/dartboard/dartboard-kabinette/index.html", 2, "", 1, "");
addItem("10083", "Dartboard_20Zubeh_C3_B6r", "/dartboard/dartboard-zubehoer/index.html", 2, "", 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;
		
	};
};