/*
*	Created by Bernard Frangoulis, last updated on 2011-01-12.
*	Copyright (c) 2010 Bernard Frangoulis. All rights reserved.
*/

var titles = [
		'',
        '<span class=\'red\'><b>&Eacute;cole de la SEP 2012&nbsp:</b></span>',
		'<span class=\'red\'><b>Journ&eacute;e d\'information du 8 oct 2011&nbsp:</b></span>',
		'<span class=\'red\'><b>Maison de la SEP (25-26 mai 2011, Lyon)&nbsp:</b></span>'
	];
var news = [
		'',
		'Les <a href="http://www.rhone-alpes-sep.org/src/ecolesep_12.html">informations</a> sont disponibles.',
		'Les <a href="http://www.rhone-alpes-sep.org/src/jasep.html">articles &agrave; t&eacute;l&eacute;charger</a> sont disponibles.',
		'Les <a href="http://www.rhone-alpes-sep.org/src/articles_maison_sep.html">articles &agrave; t&eacute;l&eacute;charger</a> sont disponibles.'
	];
var footers = [
		'','[03/02/2012]','[25/10/2011]','[22/06/2011]'
	];

function init_news(id)
{
	var p=document.getElementById(id);
	//p.style.visibility = "hidden";
	var c=p.getElementsByTagName('div')[0];
	var clds=c.getElementsByTagName('div');
	for(var i=0;i<clds.length;i++) {
		if(i<titles.length) clds[i].innerHTML = "<span class='newstitle'>"+titles[i]+"</span><span class='newsitem'>"+news[i]+"</span><span class='newsfooter'>"+footers[i]+"</span>";
	}
	//p.style.visibility = "visible";
}
