var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("1009", "Trauringe_20Eheringe", "/trauringe/index.htm", 1, "", 1, "");
addItem("10019", "Kollektion_20einfarbig", "/trauringe/trauring-kollektion-einfarbig/index.html", 2, "", 1, "");
addItem("1001", "Gelbgold", "/trauringe/trauring-kollektion-einfarbig/gelbgold/index.html", 3, "", 1, "");
addItem("10015", "Rosegold", "/trauringe/trauring-kollektion-einfarbig/rosegold/index.html", 3, "", 1, "");
addItem("10026", "Wei_C3_9Fgold", "/trauringe/trauring-kollektion-einfarbig/weissgold/index.html", 3, "", 1, "");
addItem("10036", "Platin", "/trauringe/trauring-kollektion-einfarbig/platin/index.html", 3, "", 1, "");
addItem("100174", "Kollektion_20mehrfarbig", "/trauringe/trauring-kollektion-mehrfarbig2/index.html", 2, "", 1, "");
addItem("10061", "Niessing_20Schmuck", "/niessing/index.html", 1, "", 1, "");
addItem("10083", "Niessing_20Ringe", "/niessing/ringe/index.html", 2, "", 1, "");
addItem("10086", "Niessing_20Spannringe", "/niessing/niessing-spannringe/index.html", 2, "", 1, "");
addItem("10087", "Niessing_20Spannring_20Rund", "/niessing/niessing-spannringe/spannring-rund/index.html", 3, "", 1, "");
addItem("10088", "Niessing_20Spannring_20Oval", "/niessing/niessing-spannringe/spannring-oval/index.html", 3, "", 1, "");
addItem("10089", "Niessing_20Spannring_20Flach", "/niessing/niessing-spannringe/spannring-flach/index.html", 3, "", 1, "");
addItem("10090", "Niessing_20Spannring_20HalbRund", "/niessing/niessing-spannringe/spannring-halbrund/index.html", 3, "", 1, "");
addItem("10091", "Niessing_20Spannring_20Verlauf", "/niessing/niessing-spannringe/spannring-verlauf/index.html", 3, "", 1, "");
addItem("10092", "Niessing_20Spannring_20Everest", "/niessing/niessing-spannringe/spannring-everest/index.html", 3, "", 1, "");
addItem("10093", "Niessing_20Spannring_20Narciss", "/niessing/niessing-spannringe/spannring-narciss/index.html", 3, "", 1, "");
addItem("10094", "Niessing_20Spannring_20HighEnd", "/niessing/niessing-spannringe/spannring-highend/index.html", 3, "", 1, "");
addItem("100176", "Aussergew_C3_B6hnliche_20Ringe", "/aussergewoehnliche-ringe/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;
		
	};
};