<!--var ie = document.all;var ns = document.getElementById && !document.all; news = new Array();news[0]='<span style="color: blue"> PROCHAINE ASSEMBLEE 18 Novembre 2009 - Renseignements info@geduc.org';news[1]='<span style="color: red">Pr&eacute;parons ensemble la d&eacute;cennie des Nation-Unies : &Eacute;ducation pour un d&eacute;veloppement durable.<br /><a href="http://www.nationalforum.ch">Cliquez ici pour rejoindre le Forum national</a></span>';//news[2]='<span style="color: green">Devenez membre de GEduc<br /><a href="#">Inscriptions online</a></span>';//news[3]=''//news[1]=' bient&ocirc;t <br/> <br /> plus de news...'//news[2]=' moult plus....'visibleNews = 0;slideInterval = 15;visibleTimeout = 3000;width = 90;height = 200;newsInterval = null;startPosX = 10;startPosY = screen.height;if (globalStartPosY != null)	startPosY = globalStartPosY;stopPosX = 10;stopPosY = 80;stepX = 5;stepY = stepX;function slideUp (id) {	var actPosX;	var actPosY;	if (ie) {		actPosX = parseInt(eval("document.all."+id+".style.left"));		actPosY = parseInt(eval("document.all."+id+".style.top"));	}	else {		actPosX = parseInt(document.getElementById(id).style.left);		actPosY = parseInt(document.getElementById(id).style.top);	}	if (actPosX > stopPosX)	{		if (ie)			eval("document.all."+id+".style.left = '"+(Math.max(actPosX-stepX, stopPosX))+"px';");		else			document.getElementById(id).style.left = (Math.max(actPosX-stepX, stopPosX))+"px";	}	else {		if (ie)			eval("document.all."+id+".style.left = '"+(Math.min(actPosX+stepX, stopPosX))+"px';");		else			document.getElementById(id).style.left = (Math.min(actPosX+stepX, stopPosX))+"px";	}	if (actPosY > stopPosY - visibleNews * height) {		if (ie)			eval("document.all."+id+".style.top = '"+(Math.max(actPosY-stepY, stopPosY - visibleNews * height))+"px';");		else			document.getElementById(id).style.top = (Math.max(actPosY-stepY, stopPosY - visibleNews * height))+"px";	}	else {		if (ie)			eval("document.all."+id+".style.top = '"+(Math.min(actPosY+stepY, stopPosY))+"px';");		else			document.getElementById(id).style.top = (Math.min(actPosY+stepY, stopPosY))+"px";	}	if (actPosX == stopPosX && actPosY == stopPosY - visibleNews * height) {		clearInterval(newsInterval);		oldNews = visibleNews;		visibleNews = ((visibleNews+1)%news.length);		setTimeout('startSliding("news'+oldNews+'", "news'+visibleNews+'")', visibleTimeout);	}}function createNewsDiv() {	for (i = 0; i < news.length; i++)		document.write('<div id="news'+i+'" class="news" style="position:relative; left:'+startPosX+'px; top:'+startPosY+'px; width:'+width+'px; height:'+height+'px; visibility:hidden">'+news[i]+'</div>');}function startSliding(oldid, id) {	if (ie) {		eval('document.all.'+oldid+'.style.left = "'+startPosX+'px"');		eval('document.all.'+oldid+'.style.top = "'+startPosY+'px"');		eval('document.all.'+oldid+'.style.visibility = "hidden"');		eval('document.all.'+id+'.style.visibility = "visible"');	}	else {		document.getElementById(oldid).style.left = startPosX+"px";		document.getElementById(oldid).style.top = startPosY+"px";		document.getElementById(oldid).style.visibility = "hidden";		document.getElementById(id).style.visibility = "visible";	}	newsInterval = setInterval("slideUp('"+id+"')", slideInterval);}createNewsDiv();startSliding('news'+((visibleNews+1)%news.length)+'', 'news'+visibleNews+'');