function startList() {
	if (document.all&&document.getElementsByTagName) {
		var lists = document.getElementsByTagName("ul"); 
		for (var u=0; u<lists.length; u++) {
			navRoot = lists[u];
			if (navRoot.className == 'nav') {
				for (i=0; i<navRoot.childNodes.length; i++) {
					node = navRoot.childNodes[i];
					if (node.nodeName=="LI") {
						node.onmouseover=function() {
							this.className+=" over";
						}
						node.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}
	}
}

notizia = new Array;
ejs_box2_actual = 0; 
ejs_box2_html_flag = 1; 

function ejs_box2_go()

 	{
 	if(document.getElementById)
 		{
 		ejs_box2_char = 1;
 		ejs_box2_affich(ejs_box2_actual)
 		ejs_box2_actual++;
 		if(ejs_box2_actual >= notizia.length)
 			ejs_box2_actual = 0;
 		}		
 	}
 function ejs_box2_affich(lactual)
 	{
 	var pix = notizia[lactual].charAt(ejs_box2_char);
 	if(pix == "<")
 		ejs_box2_html_flag = 1;
 	if(pix == ">")
 		ejs_box2_html_flag = 0;
 	var texte = notizia[lactual].substring(0,ejs_box2_char);
 	document.getElementById("ejs_box2_box").innerHTML = texte;
 	if(ejs_box2_char < notizia[lactual].length)
 		{
 		ejs_box2_char++;
 		if(ejs_box2_html_flag == 1)	
 			ejs_box2_affich(lactual);
 		else
 			setTimeout("ejs_box2_affich("+lactual+")",50)
 		}
 	else
 		setTimeout("ejs_box2_go()",2000)
 	}

	function zacni(){
		startList;
	}
