var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1005", "Onlineshop", "/onlineshop/index.html", 1, "", 1, "");
addItem("1001", "Unterwassergeh_C3_A4use_20ReefRider", "/onlineshop/kompletgehaeuse/gehaeuse.html", 2, "", 1, "");
addItem("1002", "ReefRider_20Zubeh_C3_B6r", "/onlineshop/kompletgehaeuse/komponenten2/index.html", 3, "", 1, "");
addItem("10016", "Unterwassergeh_C3_A4use_20NANO", "/onlineshop/nano/index.html", 2, "", 1, "");
addItem("10020", "NANO_20Geh_C3_A4use", "/onlineshop/nano/nano-gehaeuse/index.html", 3, "", 1, "");
addItem("10018", "NANO_20Koffer", "/onlineshop/nano/sets/index.html", 3, "", 1, "");
addItem("10019", "NANO_20Zubeh_C3_B6r", "/onlineshop/nano/nano-zubehoer/index.html", 3, "", 1, "");
addItem("10022", "Steuerungen_20und_20Monitore", "/onlineshop/elektoniksche-steuerungen/index.html", 2, "", 1, "");
addItem("1003", "Video_20Beleuchtung", "/onlineshop/beleuchtung/index.html", 2, "", 1, "");
addItem("10017", "Kugelarmsystem", "/onlineshop/kugelarmsystem/index.html", 2, "", 1, "");
addItem("10015", "Diverse", "/onlineshop/diverse/index.html", 2, "", 1, "");
addItem("1004", "Outdoor_20Koffer", "/onlineshop/koffer/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;
		
	};
};