var g_oPopupMenu = new SMPopupMenu("SMGlobalPopupMenu"), oItem = null;
with(g_oPopupMenu){
addItem("100185", "Telescoape_20si_20Binocluri", "/telescoape-si-binocluri/index.php", 1, "", 1, "");
addItem("1007", "Binocluri", "/telescoape-si-binocluri/binocluri/index.php", 2, "", 1, "");
addItem("100214", "Binoclu_20Meade", "/telescoape-si-binocluri/binocluri/binoclu-meade/index.php", 3, "", 1, "");
addItem("100213", "Binoclu_20Canon", "/telescoape-si-binocluri/binocluri/binoclu-canon/index.php", 3, "", 1, "");
addItem("100215", "Binoclu_20Pentax", "/telescoape-si-binocluri/binocluri/binoclu-pentax/index.php", 3, "", 1, "");
addItem("100216", "Binoclu_20Bushnell", "/telescoape-si-binocluri/binocluri/binoclu-bushnell/index.php", 3, "", 1, "");
addItem("100217", "Binoclu_20Nikon", "/telescoape-si-binocluri/binocluri/binoclu-nikon/index.php", 3, "", 1, "");
addItem("100218", "Binoclu_20Yukon", "/telescoape-si-binocluri/binocluri/binoclu-yukon/index.php", 3, "", 1, "");
addItem("100219", "Binoclu_20Sigma", "/telescoape-si-binocluri/binocluri/binoclu-sigma/index.php", 3, "", 1, "");
addItem("10049", "Telescoape", "/telescoape-si-binocluri/telescoape/index.php", 2, "", 1, "");
addItem("10069", "Monocluri", "/telescoape-si-binocluri/monocluri/index.php", 2, "", 1, "");
addItem("100189", "Forum", "/http://www.forum.magazin-online.ro", 1, "", 1, "");
addItem("100190", "Links_20Exchange", "/http://www.binoclu.ro/parteneri/", 1, "", 1, "");
addItem("100193", "SITEMAP", "/http://www.binoclu.ro/sitemap.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;
		
	};
};