$1(document).ready(function() {
		$1("#accesclient").hide(); 
		$1(".lienconnex").css("cursor", "pointer");
		$1(".lienhide").css("cursor", "pointer");
		$1("#formToShow").hide();
		$1("#showForm").css("cursor", "pointer");
		$1(".lienconnex").click(function() {
			if($1(this).next().is(":visible") == false) {
				if(document.getElementById("accesclient").style.display=='none'){
					$1("#accesclient").slideDown();
					$1(".lienconnex").css("background", "#518594");
				} else {
					$1("#accesclient").slideUp();
					$1(".lienconnex").css("background", "#012c39");
				}
			};
		});
		$1(".lienhide").click(function() {
			if($1(this).next().is(":visible") == false) {
				$1("#accesclient").slideUp();
				$1(".lienconnex").css("background", "#012c39");
			};
		});
		$1("#showForm").click(function() {
			if($1(this).next().is(":visible") == false) {
				if(document.getElementById("formToShow").style.display=='none'){
					$1("#formToShow").slideDown();
				} else {
					$1("#formToShow").slideUp();
				}
			};
		});
});

