// JavaScript Document

function home_change()
{
	document.getElementById('menu_image').src = "image/logos/home_select.png";
};
function home_retour()
{
	document.getElementById('menu_image').src = "image/logos/home.png";
};
function home_click()
{
	var disp = 1000;
	var disp2 = disp + 100;
	$("#menu_div").animate({"right": "-800px"}, disp);
	$("#contact").animate({"top": "-80px"}, disp);
	$("#lien").animate({"top": "-80px"}, disp);
	$("#location").animate({"top": "-80px"}, disp);
	$("#annonce").animate({"right": "-600px"}, disp);
	$("#logo").fadeOut(disp);
	$("#ifmv").fadeOut(disp);
	$("#ecole").fadeOut(disp);
	$("#fond").fadeOut(disp);
	$("#bas").fadeOut(disp);
	$("#droite").fadeOut(disp);
	$(".formation").fadeOut(disp);
	$(".g_cours").fadeOut(disp);
	$(".d_cours").fadeOut(disp);
	$(".nomformation").fadeOut(disp);
	$("#gauche").animate({
		left: '-1200px',
		top: '720px'
		}, disp);
	$("body").animate({backgroundColor: "#FFF"}, disp);
	setTimeout("index()",disp2);
};
function index()
{
	//window.location.href = "index.php";
	$("#blanc").show();
	window.location.href = "index";
};

function remettre()
{
	/*$("#menu_div").css("right", "0px");
	$("#logo").show();
	$("#ifmv").show();
	$("#ecole").show();
	$("#bas").show();
	$("#gauche").css({
		left: '0px',
		top: '140px'
	});
	$("#contact").css("top", "20px");
	$("#lien").css("top", "20px");*/
};



