var ouvert=0;
$("document").ready
{
	$("#feedbackButton").click
	(
		function()
		{
			if(ouvert==0)
			{
				$("#feedbackForm").animate({
					width:"520px",
					padding:"20px"
				},1000);
				ouvert=1;
			}
			else if(ouvert==1)
			{
				$("#feedbackForm").animate({ width:"1px", padding:"0px" },{duration:1000});
				ouvert=0;
			}
			
		}
	);
}
