var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "Bauphysik_X2Software", "/loesungen-fuer-bauphysik/index.html", 1, "", 1, "");
addItem("1002", "W_C3_A4rme_20_X1_20Feuchte", "/loesungen-fuer-bauphysik/software-bauphysik/index.html", 2, "", 1, "");
addItem("10017", "Strahlung_20_X1_20Licht", "/loesungen-fuer-bauphysik/software-strahlung-und-waerme-im-glas/index.html", 2, "", 1, "");
addItem("1005", "Updates_20_X4_20Upgrades", "/loesungen-fuer-bauphysik/updates-upgrades-bauphysik/index.html", 2, "", 1, "");
addItem("1007", "Softwarepflege", "/loesungen-fuer-bauphysik/softwarepflegevertraege-bauphysik/index.html", 2, "", 1, "");
addItem("1004", "Statik_X2Software", "/loesungen-fuer-statik/index.html", 1, "", 1, "");
addItem("1003", "Software", "/loesungen-fuer-statik/software-statik/index.html", 2, "", 1, "");
addItem("1006", "Updates_20_X4_20Upgrades", "/loesungen-fuer-statik/updates-upgrades-statik/index.html", 2, "", 1, "");
addItem("1008", "Softwarepflege", "/loesungen-fuer-statik/softwarepflegevertraege-statik/index.html", 2, "", 1, "");
addItem("1009", "Hardware", "/hardware/index.html", 1, "", 1, "");
addItem("10015", "Software_20f_C3_BCr_20Schulen", "/http://www.cotec.de", 1, "", 1, "_blank");
addItem("10010", "Schulungen", "/schulungen/index.html", 1, "", 1, "");
addItem("10011", "Pr_C3_A4sentationen", "/praesentationen/index.html", 1, "", 1, "");
addItem("10012", "Dienstleistungen", "/dienstleistungen/index.html", 1, "", 1, "");
addItem("10013", "Softwareentwicklung", "/softwareentwicklung/index.html", 1, "", 1, "");
addItem("10014", "Literatur_20_X4_20Publikationen", "/literatur-publikationen/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;
		
	};
};