
	var d = null;
	var delais = 100;
	var timeOut = null;
	function montre(id) {
		annulerCache();
		if (d) {d.style.display='none';}
		d = document.getElementById(id);
		if (d) {d.style.display='block';}
	}
	function cacheDelais(){
		timeOut = setTimeout('cacheMenu()', delais);
	}
	function cacheMenu(){
		if (d) {d.style.display='none';}
	}
	function annulerCache(){
		if(timeOut){
			clearTimeout(timeOut);
		}
	}
	function clear_hover(html_obj, indice, num){
		if(num!=0){
			clear_hover(document.getElementById('smenu'+num+'_dt'), 1,0);
		}
		html_obj.className = 'niv'+indice ;
	}
	function set_hover(html_obj, indice, num){
		if(num!=0){
				set_hover(document.getElementById('smenu'+num+'_dt'), 1, 0);
		}
		html_obj.className = 'niv'+indice + ' niv'+indice+'_on' ;
	}
	function clic_hover(html_obj){
		table_html_a = html_obj.getElementsByTagName("a");
		window.location.replace(table_html_a[0].getAttribute("href"));
	}
		
		
	initActu = function(){
		
		if($("#actu_flash").length){
			config = {};
			config.size = '90px'; // hauteur
			config.timeout = 0; // durée pendant laquelle la news s'arrète
			config.speed = 'medium'; // 'fast', 'medium', 'slow'
			config.direction = 'up'; // 'up', 'down'
			config.onmouseover = 'stop'; // 'stop', 'continue'
			$("#actu_flash").scrollNews(config);
		}
	}
	$(initActu);	
