$(document).ready(function() 
{

	// hides the contenu_texte as soon as the DOM is ready
	// (a little sooner than page load)
	$('#contenu_texte').show();
	$('#gauche').show();
	$('#ouvrir').hide();

	$('a#fermer').click(function() 
	{
		$('#contenu_texte').animate({ width: 'hide' }); 
		$('#gauche').animate({ width: 'hide' }); 
		$('#ouvrir').show(500);
		return false;
	});


	$('a#ouvrir').click(function() 
	{
		$('#contenu_texte').animate({ width: 'show' }); 
		$('#gauche').animate({ width: 'show' }); 
		$('#ouvrir').hide();
		return false;
	});

	window.onload = function () {	
		$('#diaporama_fond').cycle( 
		{
			fx:     'fade', 
			speed:   1000, 
			timeout: 6000
		});
		
		$('#diaporama_fond').css({'background-image' : 'url()'});
		$('#diaporama_fond img').css({'display' : 'inline'});


	}

	
});