window.addEvent('domready', getCountIRC);

function getCountIRC(){
	var req = new Request({
		url: '/irc.php',
		onSuccess: function(data){
			var html = '<img src="/styles/Thorlargx-serveur_ysandra/theme/images/icon_members.gif" alt="Nous rejoindre sur le chat">'+ data + ' connecté';
			if(data > 1) html+= 's';
			html += ' sur le chat - <a href="http://widget.mibbit.com/?settings=7794578b03c7153670fccf01e871dc68&amp;server=mibbit.epiknet.org&amp;channel=%23ysandra&amp;noServerNotices=true&amp;noServerMotd=true&amp;promptPass=true" title="Nous rejoindre sur le chat">Go !</a>';
			
			$('irc').set('html', html);
		}
	}).send();
}