$(document).ready(function() {
	 if ($("#thanks").is(":hidden")) {
		$("#thanks").slideDown("slow");
		$("#thanks").animate({opacity: 1.0}, 2000)
		$("#thanks").slideUp("slow");
	  }
	 if ($("#error").is(":hidden")) {
		$("#error").slideDown("slow");
		$("#error").animate({opacity: 1.0}, 2000)
		$("#error").slideUp("slow");
	  }
});