// <![CDATA[
	// Affichage du gif d'attente
	function attente(div_ajax) {
		Element.update(div_ajax, '<img src="/images/indicator.gif" alt="Chargement ..." />');
	}
	
	// Récup des flux RSS
	function getRss() {
		var myAjax = new Ajax.Updater('div_rss', 'ajax-flux.php', {
			method: 'post',
			onLoading: attente('div_rss')
		});
	}
// ]]>

