// Подсветка меню

function lite(td_id)
{
document.getElementById(td_id).cssText = 'background-image:url(/gif/bon.gif); background-repeat: no-repeat; background-position:top;';
}

function overTd(id_td) 
{
sale=document.getElementById(id_td);
sale.style.backgroundImage='url(/gif/bon.gif)';
}

function outTd(id_td) 
{
sale=document.getElementById(id_td);
sale.style.backgroundImage='url(/gif/boff.gif)';
}

function currentURL()
{
// Определяем URL текущей страницы
strURL=document.URL;
arrayURL=strURL.split("/");
current=arrayURL[4];
return current;
}


