$(document).ready(JJ_init);

function JJ_init(){
    $(".contentPos").hide();
    JJ_addEvent();
    if(document.location.hash == "#a-propos"){
        $("#a-propos").slideToggle("slow");
    }
    if(document.location.hash == "#contact"){
        $(".contact").slideToggle("slow");
    }
}

function JJ_addEvent(){
	$("#accueilLink")
    .click(function(ev){
		ev.preventDefault();
		document.location.hash = "";
		$(".msg_mail").remove();
		$(".contentPos").slideUp("slow");
    });
	
	$("#a-proposLink")
    .click(function(ev){
		ev.preventDefault();
		if($("#a-propos").height() <= 0){
			document.location.hash = "#a-propos";
			$(".msg_mail").remove();
			$(".contentPos").slideUp("slow", function(){ $("#a-propos").slideDown("slow"); });
		}
    });
	
    $("#portfolioLink")
    .click(function(ev){
		ev.preventDefault();
		if($("#portfolio").height() <= 0){
			document.location.hash = "#portfolio";
			$(".msg_mail").remove();
			$(".contentPos").slideUp("slow", function(){ $("#portfolio").slideDown("slow"); });
		}
    });

    $(".contactLink")
    .click(function(ev){
		ev.preventDefault();
		if($("#contact").height() <= 0){
			document.location.hash = "#contact";
			$(".msg_mail").remove();
			$(".contentPos").slideUp("slow", function(){ $("#contact").slideDown("slow"); });
		}
    });
}
