		function onhover(id,hover)
		{
			var liS=document.getElementById('li'+id);
			if (hover)
			{
                                liS.style.backgroundImage = 'url(/bitrix/templates/wbspublishing/i/0'+ id + 'a.gif)';
                                liS.style.color = '#ef4035';
                                liS.style.textDecoration = 'none';
			}
			else
			{
                                liS.style.backgroundImage = 'url(/bitrix/templates/wbspublishing/i/0'+ id + '.gif)';
                                liS.style.color = '#959ca1';
                                liS.style.textDecoration = 'underline';
			}
		return true;
		}
            
		function onhover2(id,hover)
		{
			var lS=document.getElementById('l'+id);
			var liS=document.getElementById('li2');

			if (hover)
			{
                                lS.style.color = '#ef4035';
                                lS.style.textDecoration = 'none';
                                
                                liS.style.backgroundImage = 'url(/bitrix/templates/wbspublishing/i/02a.gif)';
                                liS.style.color = '#ef4035';
                                liS.style.textDecoration = 'none';
			}
			else
			{
                                lS.style.color = '#959ca1';
                                lS.style.textDecoration = 'underline';

                                liS.style.backgroundImage = 'url(/bitrix/templates/wbspublishing/i/02.gif)';
                                liS.style.color = '#959ca1';
                                liS.style.textDecoration = 'underline';
			}
		return true;
		}
		
		function onhover3(id,hover)
		{
			var lS=document.getElementById('l'+id);

			if (hover)
			{
                                lS.style.color = '#ef4035';
                                lS.style.textDecoration = 'none';
			}
			else
			{
                                lS.style.color = '#959ca1';
                                lS.style.textDecoration = 'underline';
			}
		return true;
		}


