// apparition du formulaire de commentaires par animation jQuery
$(document).ready(function () {
	if ($("form").is("#comment-form") && window.location.hash != "#pr") {
		var fieldsets = $("#comment-form fieldset");
		fieldsets.css("display","none");
		$("#comment-form h3 a").click(function () {
			if (fieldsets.css("display") == "none") {
				$(this).css("background-position","left bottom");
			} else {
				$(this).css("background-position","left top");
			}
			fieldsets.slideToggle("slow");
		});
	} else if ($("form").is("#comment-form") && window.location.hash == "#pr") {
		$("#comment-form h3 a").replaceWith($("#comment-form h3 a").text());
	}
});
