function menu() {
var d=document.getElementById('stroka').getElementsByTagName('td');
for(var i = 0; i < d.length; i++){
if(d.item(i).className == "lev" || d.item(i).className == "rai"  ){
d.item(i).onmouseover = function(){this.className = "levhover";}
d.item(i).onmouseout = function(){this.className = "lev";}
d.item(0).onclick = function(){document.location.href='index.php';}
d.item(1).onclick = function(){document.location.href='s_arh.html';}
d.item(2).onclick = function(){document.location.href='p_pod.php';}
d.item(3).onclick = function(){document.location.href='t_fz.php';}
d.item(4).onclick = function(){document.location.href='i_rp.html';}
d.item(5).onclick = function(){document.location.href='/phpbb3/';}
d.item(6).onclick = function(){document.location.href='info.html';}
d.item(i).style.cursor = 'pointer';


}
else{continue};
}
for(var i = 0; i < d.length; i++){
if (d.item(i).className == "nazh") {
d.item(i).style.cursor = 'pointer';	
}
}
}


