	function getHome() {
		document.location = '/accueil/index';
	}
	function getSociete() {
		document.location = '/societe';
	}
	function getServices() {
		document.location = '/services';
	}
	function getVision() {
		document.location = '/vision';
	}
	function getReferences() {
		document.location = '/references';
	}
	function getPartenaires() {
		document.location = '/partenaires';
	}
	function getRecrutement() {
		document.location = '/recrutement';
	}
	function getContact() {
		document.location = '/contact';
	}

	function choixClient() {
		setCookie('Visitor', 'C', 2010, 4, 9);
		getHome();
	}
	function choixDecouvrir() {
		setCookie('Visitor', 'D', 2010, 4, 9);
		getHome();
	}
	function choixPartenaire() {
		setCookie('Visitor', 'P', 2010, 4, 9);
		getHome();
	}

	function moduleMetiers() {
	   	$.ajax({
	   		url: "/ajax/metiers",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divMetiers").empty();
				$("#divMetiers").append(html);
				$("#divMetiers").show();
 			}
	   	});
	}

	function moduleRealisations() {
	   	$.ajax({
	   		url: "/ajax/realisations",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divRealisations").empty();
				$("#divRealisations").append(html);
				$("#divRealisations").show();
 			}
	   	});
	}

	function moduleVideoPartenaire() {
	   	$.ajax({
	   		url: "/ajax/videopartenaire",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divVideoPartenaire").empty();
				$("#divVideoPartenaire").append(html);
				$("#divVideoPartenaire").show();
 			}
	   	});
	}

	function moduleVideoSavoirPlus() {
	   	$.ajax({
	   		url: "/ajax/videosavoirplus",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divVideoSavoirPlus").empty();
				$("#divVideoSavoirPlus").append(html);
				$("#divVideoSavoirPlus").show();
 			}
	   	});
	}

	function moduleVideoClient() {
	   	$.ajax({
	   		url: "/ajax/videoclient",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divVideoClient").empty();
				$("#divVideoClient").append(html);
				$("#divVideoClient").show();
 			}
	   	});
	}

	function moduleNews() {
	   	$.ajax({
	   		url: "/ajax/news",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divNews").empty();
				$("#divNews").append(html);
				$("#divNews").show();
 			}
	   	});
	}

	function moduleReferences() {
	   	$.ajax({
	   		url: "/ajax/references",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divReferences").empty();
				$("#divReferences").append(html);
				$("#divReferences").show();
 			}
	   	});
	}

	function modulePartenaires() {
	   	$.ajax({
	   		url: "/ajax/partenaires",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divPartenaires").empty();
				$("#divPartenaires").append(html);
				$("#divPartenaires").show();
 			}
	   	});
	}

	function moduleContact() {
	   	$.ajax({
	   		url: "/ajax/contact",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divContact").empty();
				$("#divContact").append(html);
				$("#divContact").show();
 			}
	   	});
	}

	function moduleTemoignages() {
	   	$.ajax({
	   		url: "/ajax/temoignages",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divTemoignages").empty();
				$("#divTemoignages").append(html);
				$("#divTemoignages").show();
 			}
	   	});
	}

	function moduleNewsletter() {
	   	$.ajax({
	   		url: "/ajax/newsletter",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divNewsletter").empty();
				$("#divNewsletter").append(html);
				$("#divNewsletter").show();
 			}
	   	});
	}

	function moduleEspaceClient() {
	   	$.ajax({
	   		url: "/ajax/espaceclient",
	   		type: "GET",
	   		data: "",
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divEspaceClient").empty();
				$("#divEspaceClient").append(html);
				$("#divEspaceClient").show();
 			}
	   	});
	}

	function searchReference() {
	   	$.ajax({
	   		url: "/references/recherche",
	   		type: "GET",
	   		data: $('#frmRechercheReference :input').serialize(),
	   		async: false,
	   		cache: false,
	   		success: function(html){
				$("#divResultatRecherche").empty();
				$("#divResultatRecherche").append(html);
 			}
	   	});
	}
	