// JavaScript Document


// Rotation logos sur page d'accueil
function theRotator() {	
	$('div#rotator ul li').hide();
	$('div#rotator ul li:first').show();
	setInterval('rotate()',3000);
}

function rotate() {	
	var current = ($('div#rotator ul li.show')?  $('div#rotator ul li.show') : $('div#rotator ul li:first'));
	var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('div#rotator ul li:first') :current.next()) : $('div#rotator ul li:first'));	
	next.hide().addClass('show').slideDown('slow');
	current.slideUp('slow').removeClass('show');
};