$(document).ready(function(){

	$('div#colonne_gauche ul#menuGauche li.espace ').mouseover(function(){
		
		var sLien = $(this).attr('id');
		
		$('div#colonne_droite div#slideshow').hide();
		$('div#colonne_droite div#accueil1').hide();
		$('div#colonne_droite div#accueil2').hide();
		$('div#colonne_droite div#accueil3').hide();
		$('div#colonne_droite div#accueil' + sLien).show();
	
	});
		
	setInterval( "slideSwitch()", 5000 );

});

function slideSwitch() 
{
	var $active = $('#slideshow a.active');

    if ( $active.length == 0 ) $active = $('#slideshow a:last');

    var $next = $active.next().length ? $active.next() : $('#slideshow a:first');

    $active.addClass('last-active').fadeOut(300, function(){ 

		$next.addClass('active').fadeIn(300, function() {
	
			$active.removeClass('active last-active');
	
		});
	});
}
