function cat_menu_init()

{
	var menu=document.getElementById('menubox');

	var menus=menu.getElementsByTagName('li');
//alert(menus.length);
	var k=0;
	for (idx = 0; idx < menus.length; idx++)
	{
		if (menus[idx].id.match(/menunode_(.*)/i))
		{
				
			var links=menus[idx].getElementsByTagName('a');
			//alert(links.length);
			for (idz = 0; idz < links.length; idz++)
			{
				//alert(links[idz].href);	
				if(links[idz].href==window.location)
				{
					
					var subbox=menus[idx].getElementsByTagName('ul');
					for (ids = 0; ids < subbox.length; ids++)
						subbox[ids].style.display="";
				}
			}
		}
	}
//alert(k);
}



//function share42(f,u,t){if(!u)u=location.href;if(!t)t=document.title;u=encodeURIComponent(u);t=encodeURIComponent(t);var s=new Array('http://vkontakte.ru/share.php?url='+u+'" title="Поделиться В Контакте"','http://www.facebook.com/sharer.php?u='+u+'&t='+t+'" title="Поделиться в Facebook"','http://twitter.com/share?text='+t+'&url='+u+'" title="Добавить в Twitter"','http://connect.mail.ru/share?url='+u+'&title='+t+'" title="Поделиться в Моем Мире@Mail.Ru"','http://www.odnoklassniki.ru/dk?st.cmd=addShare&st._surl='+u+'&title='+t+'" title="Добавить в Одноклассники"','http://www.livejournal.com/update.bml?event='+u+'&subject='+t+'" title="Опубликовать в LiveJournal"');for(i=0;i<s.length;i++)document.write('<a style="display:inline-block;width:24px;height:24px;margin:0 7px 0 0;background:url(http://'+f+'icons.png) -'+24*i+'px 0" href="'+s[i]+'" target="_blank"></a>')} 

