$(document).ready(function() {

	$('#backgroundI').hide();

$('#backgroundD').click(function() {
		$('#backgroundD').fadeOut("fast");
		$('#backgroundI').fadeIn("fast");
		$('#content').fadeOut("fast");
		$('#contentAcc').fadeOut("fast");
		$('#contentJoindre').fadeOut("fast");
		$('#contentZone').fadeOut("fast");
		//$('div#top').fadeOut('fast');
		
		
		$('div#topBG').fadeOut("fast");
		$('img#logo').fadeOut("fast");

		//$('#top').fadeOut("fast");
		$('#bottom').fadeOut("fast");
	});
	$('#backgroundI').click(function() {
		$('#backgroundI').fadeOut("fast");
		$('#backgroundD').fadeIn("fast");
		$('#content').fadeIn("fast");
		$('#contentAcc').fadeIn("fast");
		$('#contentJoindre').fadeIn("fast");
		$('#contentZone').fadeIn("fast");
		//$('#top').fadeIn("fast");
		
		$('div#topBG').fadeIn("fast");

		$('img#logo').fadeIn("fast");

		$('#bottom').fadeIn("fast");
	});
	});
