
// телефоны в cgi-bin/templates/inc/top.tmpl

onload = function() {


var ph_e, ph_i = 0;
while (ph_e = document.getElementById('phone_show').getElementsByTagName ('div') [ph_i++]) {
	ph_e.onmouseover = function () {
		//clearTimeout(ph_t);
		}
	ph_e.onmouseout = function () {
			//var ph_t=setTimeout("timedCount()",ph_timeOut);
		}	
	}
}

ph_c=0;
ph_timeOut = 5000;
var ph_t;
ph_t=setTimeout("timedCount()",ph_timeOut);

function timedCount() {
if (!document.getElementById('phone_show')) return;
var getPhones = document.getElementById('phone_show').getElementsByTagName('div');
curslide = getPhones.length-1;
	for (var a=0; a<getPhones.length; a++) {
		if (getPhones[a].className.indexOf("cur") == 0) {
				getPhones[a].className = '';
				ph_c = a;
		}
	}
	ph_c++;
	if (ph_c>curslide) {ph_c=0;}
	getPhones[ph_c].className = 'cur';
	ph_t=setTimeout("timedCount()",ph_timeOut);
}
