function init()
{
	if ( $('sitemap') )
		var mainmenu = DynarchMenu.setup('sitemap', { lazy: true, shadows: false, electric: 250 });
	sujets2fade = $$('img.fader');
	if (sujets2fade.length > 1)	setInterval('fadeSujets()', 6000);
}
function fadeSujets()
{
	Effect.Fade(sujets2fade[sujetsId], { duration:1, from:2.0, to:0.0 });
	if (sujetsId++ >= sujets2fade.length-1) sujetsId=0;
	Effect.Appear(sujets2fade[sujetsId], { duration:1, from:0.0, to:2.0 });
}
function row_hl( row )
{
  $(row).addClassName('high');
}
function row_ll( row )
{
  $(row).removeClassName('high');
}
function row_sel( id )
{
	window.location.href=thisURL + 'IDagency=' + id;
}

