var sens = 1;
function ouvreForm(lang){
	if (sens == -1){
		$('#conteneurForm').animate({'bottom': '-378px'}, 'slow');
		document.getElementById('bandeau_form_img').src='images/band_form_o_horz_'+lang+'.png';
		sens = 1;
	}else{
		$('#conteneurForm').animate({'bottom': '30px'}, 'slow');			
		document.getElementById('bandeau_form_img').src='images/band_form_f_horz_'+lang+'.png';
		sens = -1;
	}
}


function fermBandeau(){
	if (band == -1){
		//On fait disparaitre le bandeau
		$('#bandeau_partage').animate({'width': '0px', 'left': '85%', 'bottom': '-40px'}, 'slow');
		//On eloigne le formulaire
		$('#conteneurForm').animate({'width': '0px', 'bottom':'-500px'});
		document.getElementById('ferm_band').src='images/picto_actionBandeau.png';
		band = 1;
		$.cookie("band_ferme", "true");
	}else{
		//On fait apparaitre le bandeau
		$('#bandeau_partage').animate({'width': '74%', 'left': '15%', 'bottom': '0px'}, 'slow');
		//On replace le formulaire
		$('#conteneurForm').animate({'width': '280px', 'bottom':'-320px'});
		document.getElementById('ferm_band').src='images/picto_actionBandeau_ferme.png';
		band = -1;
		$.cookie("band_ferme", "false");
	}
}

function fermBandeau_cookie(){
	//On fait disparaitre le bandeau
	$('#bandeau_partage').animate({'width': '0px', 'left': '85%', 'bottom': '-40px'}, 0);
	//On eloigne le formulaire
	$('#conteneurForm').animate({'width': '0px', 'bottom':'-500px'}, 0);
	document.getElementById('ferm_band').src='images/picto_actionBandeau.png';
	band = 1;
	$.cookie("band_ferme", "true");
}
