// JavaScript Document

function mouse_on(id) {
    	el = document.all[id];
	    el.src = 'img/ok.gif';
	}

	function mouse_off(id) {
    	el = document.all[id];
	    el.src = 'img/icon_Ok.gif';   
	}
  
	function setLine() {
	  	p = document.all['r'];
    	l = document.all['line'];
	    if (p.offsetWidth <= 150) {
			//    l.style.width = p.offsetWidth - 10;
			//	alert(l.style.width);
		} else if(p.offsetWidth > 150) {
		    l.style.width = 150;    
  		}
		l.style.height = 5;
	}

	// Возвращаем длинну ячейки
	function getWidth(i) {
		td = document.getElementById("menu_"+i);b 
	    return td.clientWidth;
	}
	
	// Изменяем длинну ячейки 
	function setWidth() {
		count_items=2;
	    for(i = 1; i < count_items; i++) {
		    td = document.getElementById("indent_"+i);
		    if(td != null) {     
		       td.style.width = getWidth(i);       
		    }
		}
	}
