var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1001", "Thailand", "/thailand/index.html", 1, "", 1, "");
addItem("1002", "Thailand_20Phuket", "/thailand/thailand-phuket/index.html", 2, "", 1, "");
addItem("1003", "Flug_20Thailand", "/thailand/flug-thailand/index.html", 2, "", 1, "");
addItem("1004", "Impfungen_20Thailand", "/thailand/impfungen-thailand/index.html", 2, "", 1, "");
addItem("1005", "Klima_20Thailand", "/thailand/klima-thailand/index.html", 2, "", 1, "");
addItem("1006", "Reisezeit_20Thailand", "/thailand/reisezeit-thailand/index.html", 2, "", 1, "");
addItem("1007", "Thailand_20Karte", "/thailand/thailand-karte/index.html", 2, "", 1, "");
addItem("1008", "Thailand_20Koh_20Samui", "/thailand/thailand-koh-samui/index.html", 2, "", 1, "");
addItem("1009", "Urlaub_20Thailand", "/thailand/urlaub-thailand/index.html", 2, "", 1, "");
addItem("10010", "W_C3_A4hrung_20Thailand", "/thailand/waehrung-thailand/index.html", 2, "", 1, "");
addItem("10011", "Flugzeit_20Thailand", "/thailand/flugzeit-thailand/index.html", 2, "", 1, "");
addItem("10012", "Hauptstadt_20Thailand", "/thailand/hauptstadt-thailand/index.html", 2, "", 1, "");
addItem("10013", "Regenzeit_20Thailand", "/thailand/regenzeit-thailand/index.html", 2, "", 1, "");
addItem("10014", "Zeitverschiebung_20Thailand", "/thailand/zeitverschiebung-thailand/index.html", 2, "", 1, "");
addItem("10015", "Einreise_20Thailand", "/thailand/einreise-thailand/index.html", 2, "", 1, "");
addItem("10016", "Thailand_20Fotos", "/thailand/thailand-fotos/index.html", 2, "", 1, "");
addItem("10017", "Chiang_20Mai_20Thailand", "/thailand/chiang-mai-thailand/index.html", 2, "", 1, "");
addItem("10018", "Leben_20in_20Thailand", "/thailand/leben-in-thailand/index.html", 2, "", 1, "");
addItem("10019", "Thailand_20Reisen", "/thailand/thailand-reisen/index.html", 2, "", 1, "");
addItem("10020", "Thailand_20K_C3_B6nig", "/thailand/thailand-koenig/index.html", 2, "", 1, "");
addItem("10021", "Thailand_20Rundreise", "/thailand/thailand-rundreise/index.html", 2, "", 1, "");
addItem("10022", "Botschaft_20Thailand", "/thailand/botschaft-thailand/index.html", 2, "", 1, "");
addItem("10023", "Haus_20in_20Thailand", "/thailand/haus-in-thailand/index.html", 2, "", 1, "");
addItem("10024", "Tip_20Thailand", "/thailand/tip-thailand/index.html", 2, "", 1, "");
addItem("10025", "Billigfl_C3_BCge_20Thailand", "/thailand/billigfluege-thailand/index.html", 2, "", 1, "");
addItem("10026", "Billig_20Thailand", "/thailand/billig-thailand/index.html", 2, "", 1, "");
addItem("10027", "Hotel_20Thailand", "/thailand/hotel-thailand/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;
		
	};
};