var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10066", "Home", "/index.html", 1, "", 1, "_self");
addItem("10076", "Das_20Gate_X21_20Event_20Field", "/pg79.html", 2, "", 1, "_self");
addItem("10071", "Wo_20ist_20das_20Spielfeld?", "/pg80.html", 2, "", 1, "_self");
addItem("10073", "_C3_96ffnungszeiten", "/pg82.html", 2, "", 1, "");
addItem("10072", "Preise", "/pg81.html", 2, "", 1, "");
addItem("10074", "Bilder_20_X2_20Galerie", "/pg119.html", 2, "", 1, "_self");
addItem("10092", "Historie", "/pg117.html", 2, "", 1, "_self");
addItem("10069", "Veranstaltungen", "/pg98.html", 1, "", 1, "_self");
addItem("10084", "Gruppen", "/pg98.html", 2, "", 1, "_self");
addItem("10091", "Reservierung", "/pg129.html", 2, "", 1, "_self");
addItem("10085", "Turniere_20_X7_20Events", "/pi69/pi85/index.html", 2, "", 1, "_self");
addItem("10095", "im_20Gate_X21", "/pg99.html", 3, "", 1, "_self");
addItem("10096", "XPSL_20_X2_20Termine", "/pg121.html", 3, "", 1, "_self");
addItem("10097", "Old_20School_20Challenge_20(OSC)", "/pg122.html", 3, "", 1, "_self");
addItem("100100", "Aktuelle_20Events", "/pg128.html", 3, "", 1, "_self");
addItem("10098", "Paintball_20Gutschein", "/pi69/pi98/pd436.html", 2, "", 1, "_self");
addItem("10067", "Community", "/pg86.html", 1, "", 1, "_self");
addItem("10077", "Forum", "/pg86.html", 2, "", 1, "_self");
addItem("10079", "Unsere_20Philosophie", "/pg88.html", 2, "", 1, "_self");
addItem("10068", "Infos_20_X7_20News", "/pg91.html", 1, "", 1, "_self");
addItem("10082", "Woodland_X2Feld", "/pg90.html", 2, "", 1, "_self");
addItem("10094", "Hotels_20in_20Mendig", "/pg118.html", 2, "", 1, "_self");
addItem("10080", "Unsere_20Presse", "/pg93.html", 2, "", 1, "_self");
addItem("10083", "XPSL_20_X2_20Der_20Blog", "/pg91.html", 2, "", 1, "_self");
addItem("10090", "Media_20Files", "/pg92.html", 2, "", 1, "_self");
addItem("10081", "Impressum_20_X7_20Kontakt", "/pg4.html", 2, "", 1, "_self");
addItem("10093", "Haus_X2Regeln_20!", "/pg116.html", 2, "", 1, "_self");
addItem("10070", "Team_20_X2_20Play", "/pg101.html", 1, "", 1, "_self");
addItem("10086", "Das_20Gate_X21_20Hausteam", "/pg101.html", 2, "", 1, "_self");
addItem("10099", "Partner_X2Teams", "/pg127.html", 2, "", 1, "_self");
};

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;
		
	};
};