		function onhover(id,hover)
		{
			var liS=document.getElementById('li'+id);
                        var a=document.getElementById('a'+id);

			if (hover)
			{
                                liS.style.backgroundImage = 'url(/bitrix/templates/tecoma/img/menu_sprite_02-new.png)';
                                liS.style.backgroundRepeat = 'no-repeat';
                                liS.style.backgroundPosition = 'right top';
				    liS.style.marginTop = '5px';
				    a.style.marginTop = '0px';
                                a.style.backgroundImage = 'url(/bitrix/templates/tecoma/img/menu_sprite-new.png)';
                                a.style.backgroundRepeat = 'no-repeat';
                                a.style.backgroundPosition = 'left top';
                                a.style.color = '#fff';
                                a.style.textDecoration = 'none';
			}
			else
			{
                                liS.style.backgroundImage = 'none';
                                a.style.backgroundImage = 'none';
                                a.style.color = '#11736E';
                                a.style.textDecoration = 'underline ';
			}
		return true;
		}
		

