var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("100128", "Software", "/software/index.html", 1, "", 1, "");
addItem("100135", "Download", "/software/download/index.html", 2, "", 1, "");
addItem("100136", "Browser", "/software/browser/index.html", 2, "", 1, "");
addItem("100138", "Database_20Structure", "/software/structure/index.html", 2, "", 1, "");
addItem("100139", "Software_20Installation", "/software/installation/index.html", 2, "", 1, "");
addItem("100140", "ITU_20CIRAF_20Zones", "/software/cirafzones/index.html", 2, "", 1, "");
addItem("10089", "ILG_20Listening_20Post", "/software/listeningpost/index.html", 2, "", 1, "");
addItem("10080", "Your_20help_20is_20wanted", "/software/monitoring/index.html", 2, "", 1, "");
addItem("100142", "From_20ILG_20History", "/ilghistory/index.html", 1, "", 1, "");
addItem("100137", "ILGRadio_20Software_20Tools", "/softwaretool/index.html", 1, "", 1, "");
addItem("100130", "ILGRadio_20Programme_20Guide", "/programguide/index.html", 1, "", 1, "");
addItem("100131", "ILGRadio_20Web_20Directory", "/webdirectory/index.html", 1, "", 1, "");
addItem("100129", "Important_20Links", "/importantlinks/index.html", 1, "", 1, "");
addItem("1004", "ILG_20_X7_20BFM_20Company_20Projects", "/companyprojects/index.html", 1, "", 1, "");
addItem("10010", "BFM_20Sat_X2Shop", "/companyprojects/bfm-satshop/index.html", 2, "", 1, "");
addItem("1002", "Frequency_20Management_20Consulting", "/companyprojects/bfmconsulting/index.html", 2, "", 1, "");
addItem("10011", "ILG_20Professional_20Database", "/companyprojects/ilgdatabase/index.html", 2, "", 1, "");
addItem("1007", "Sat_X2Receiver_X2World", "/companyprojects/srw/index.html", 2, "", 1, "");
addItem("1003", "Special_20Projects", "/companyprojects/specialprojects/index.html", 2, "", 1, "");
addItem("100132", "ILGRadio_20Orderform", "/ilgradio-order/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;
		
	};
};