jQuery.noConflict();
jQuery(document).ready(function($){
	$("#formulaire").hide("fast");
	$("#suite").click(function(){
		$("#formulaire").show("slow");
		$(this).hide();
		});
	$("#message").autogrow({
		maxHeight: 300,
		minHeight: 100,
		lineHeight: 16
	});
	$("#message").charCounter(4000, {
		container: "<div></div>",
		classname: "counter",
		pulse: false,
		format: "%1 caract&egrave;res restants!"
	});
});
