var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("10017", "Nordic_20Cross_20Skating", "/nordic-inline/index.html", 1, "bild_nordic.jpg", 1, "");
addItem("1001", "Nordic_20Cross_20Skates", "/nordic-inline/nordic-inline-skates/index.html", 2, "", 1, "");
addItem("1003", "Powerslide_20Nordic_20Sets", "/nordic-inline/nordic-inline-skates/nordic-inline-startersets/index.html", 3, "", 1, "");
addItem("1002", "Nordic_20Zubeh_C3_B6r", "/nordic-inline/nordic-inline-zubehoer/index.html", 2, "", 1, "");
addItem("10011", "Nordic_20Ersatzteile", "/nordic-inline/ersatzteile/index.html", 2, "", 1, "");
addItem("10013", "Nordic_20Blading_20St_C3_B6cke", "/nordic-inline/stoecke/index.html", 2, "", 1, "");
addItem("10014", "Stock_20Ersatzteile", "/nordic-inline/stock-ersatzteile/index.html", 2, "", 1, "");
addItem("10028", "Speedskates_X4Boots_X4Schienen", "/speedskates-boots-und-schienen/index.html", 1, "bild_speed.jpg", 1, "");
addItem("10021", "Rollerblade_20Skates", "/speedskates-boots-und-schienen/rollerblade-kpl-skates/index.html", 2, "", 1, "");
addItem("1005", "Powerslide_20Skates", "/speedskates-boots-und-schienen/inline-skating-speedskates/index.html", 2, "", 1, "");
addItem("10019", "Powerslide_20Boots", "/speedskates-boots-und-schienen/powerslide-boots/index.html", 2, "", 1, "");
addItem("10027", "Schienen_20und_20Achsen", "/speedskates-boots-und-schienen/schienen-und-achsen/index.html", 2, "", 1, "");
addItem("10036", "Skating_20Zubeh_C3_B6r", "/skating-zubehoer/index.html", 1, "bild_zubehoer.jpg", 1, "");
addItem("10034", "Skating_20Rollen", "/skating-zubehoer/skating-rollen/index.html", 2, "", 1, "");
addItem("10037", "Rollen_20bis_2084mm", "/skating-zubehoer/skating-rollen/rollen-bis-84mm/index.html", 3, "", 1, "");
addItem("10038", "Rollen_2090mm", "/skating-zubehoer/skating-rollen/rollen-90mm/index.html", 3, "", 1, "");
addItem("10039", "Rollen_20100mm", "/skating-zubehoer/skating-rollen/rollen-100mm/index.html", 3, "", 1, "");
addItem("10040", "Rollen_20110mm", "/skating-zubehoer/skating-rollen/rollen-110mm/index.html", 3, "", 1, "");
addItem("10022", "Kugellager_X1Spacer", "/skating-zubehoer/lagerspacer/index.html", 2, "", 1, "");
addItem("1007", "Sch_C3_BCtzer_X1Helme", "/skating-zubehoer/schuetzer-helme/index.html", 2, "", 1, "");
addItem("1008", "Bekleidung", "/skating-zubehoer/bekleidung/index.html", 2, "", 1, "");
addItem("10035", "Bremsgummis", "/skating-zubehoer/bremsgummis/index.html", 2, "", 1, "");
addItem("10023", "Verschiedenes", "/skating-zubehoer/verschiedenes/index.html", 2, "", 1, "");
addItem("10015", "Hits_20f_C3_BCr_20Kids", "/hits-fuer-kids/index.html", 1, "bild_kids.jpg", 1, "");
addItem("10032", "Xlider_X4Boards_X4Scooter", "/hits-fuer-kids/xlider-boards-scooter/index.html", 2, "", 1, "");
addItem("10029", "Urban_20Skates", "/urban/index.html", 1, "bild_urban.jpg", 1, "");
addItem("10033", "Schn_C3_A4ppchen_X2Ecke", "/schnaeppchen-ecke/index.html", 1, "bild_prozente_schw.jpg", 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;
		
	};
};