$(document).ready(function() {
	$("#question1").click(
		function() {
			if ($("#answer1").is(":hidden")) {
				$("#answer1").slideDown("slow");
			} else {
				$("#answer1").slideUp("slow");
			}
		}
	);
	$("#question2").click(
		function() {
			if ($("#answer2").is(":hidden")) {
				$("#answer2").slideDown("slow");
			} else {
				$("#answer2").slideUp("slow");
			}
		}
	);
	$("#question3").click(
		function() {
			if ($("#answer3").is(":hidden")) {
				$("#answer3").slideDown("slow");
			} else {
				$("#answer3").slideUp("slow");
			}
		}
	);
	$("#question4").click(
		function() {
			if ($("#answer4").is(":hidden")) {
				$("#answer4").slideDown("slow");
			} else {
				$("#answer4").slideUp("slow");
			}
		}
	);
	$("#question5").click(
		function() {
			if ($("#answer5").is(":hidden")) {
				$("#answer5").slideDown("slow");
			} else {
				$("#answer5").slideUp("slow");
			}
		}
	);
	$("#question6").click(
		function() {
			if ($("#answer6").is(":hidden")) {
				$("#answer6").slideDown("slow");
			} else {
				$("#answer6").slideUp("slow");
			}
		}
	);
	$("#question7").click(
		function() {
			if ($("#answer7").is(":hidden")) {
				$("#answer7").slideDown("slow");
			} else {
				$("#answer7").slideUp("slow");
			}
		}
	);
});
