$(function(){
	$("#profil1").hide();
	$("#profil1bis").hide();
	$("#profil2").hide();
	$("#profil2bis").hide();
	$("#profil3").hide();
	$("#profil3bis").hide();
	$("#profil4").hide();
	$("#profil4bis").hide();
});
function profilShow(element) {
	if(element=="profil1") {
		$("#lienProfil1").addClass("activeLien");
		$("#lienProfil2").removeClass("activeLien");
		$("#lienProfil3").removeClass("activeLien");
		$("#lienProfil4").removeClass("activeLien");
		$("#profil2").hide("slow");
		$("#profil2bis").hide("slow");
		$("#profil3").hide("slow");
		$("#profil3bis").hide("slow");
		$("#profil4").hide("slow");
		$("#profil4bis").hide("slow");
		$("#profil1").show("slow");
		$("#profil1bis").show("slow");
	}
	if(element=="profil2") {
		$("#lienProfil2").addClass("activeLien");
		$("#lienProfil1").removeClass("activeLien");
		$("#lienProfil3").removeClass("activeLien");
		$("#lienProfil4").removeClass("activeLien");
		$("#profil1").hide("slow");
		$("#profil1bis").hide("slow");
		$("#profil3").hide("slow");
		$("#profil3bis").hide("slow");
		$("#profil4").hide("slow");
		$("#profil4bis").hide("slow");
		$("#profil2").show("slow");
		$("#profil2bis").show("slow");
	}	
	if(element=="profil3") {
		$("#lienProfil3").addClass("activeLien");
		$("#lienProfil1").removeClass("activeLien");
		$("#lienProfil2").removeClass("activeLien");
		$("#lienProfil4").removeClass("activeLien");
		$("#profil1").hide("slow");
		$("#profil1bis").hide("slow");
		$("#profil2").hide("slow");
		$("#profil2bis").hide("slow");
		$("#profil4").hide("slow");
		$("#profil4bis").hide("slow");
		$("#profil3").show("slow");
		$("#profil3bis").show("slow");
	}	
	if(element=="profil4") {
		$("#lienProfil4").addClass("activeLien");
		$("#lienProfil1").removeClass("activeLien");
		$("#lienProfil2").removeClass("activeLien");
		$("#lienProfil3").removeClass("activeLien");
		$("#profil1").hide("slow");
		$("#profil1bis").hide("slow");
		$("#profil2").hide("slow");
		$("#profil2bis").hide("slow");
		$("#profil3").hide("slow");
		$("#profil3bis").hide("slow");
		$("#profil4").show("slow");
		$("#profil4bis").show("slow");
	}	
}