$(document).ready(function() {

	/* Hide parent and teacher contact us forms and offer choice unless errors being displayed or
	we already know that a parent or teacher is logged in */
	if (($("#parentscontact").length == 1) && ($("#teacherscontact").length == 1) && ($("#parentscontact #errorExplanation").length == 0)) {
		$("#parentscontact").hide();
	};
	if (($("#parentscontact").length == 1) && ($("#teacherscontact").length == 1) && ($("#teacherscontact #errorExplanation").length == 0)) {
		$("#teacherscontact").hide();
	};
	if (($("#contactus").length == 1) && ($("#errorExplanation").length == 0) && $("#contactus form").length > 0 && ($("#parentscontact").length == 1) && ($("#teacherscontact").length == 1)) {
		$('<p>Please click the appropriate link to reveal the form for a <a href="#" id="revealparentform">parent</a> or a <a href="#" id="revealteacherform">teacher</a>.</p>').insertAfter("#instructions");
	};
	$("#revealparentform").click(function() {
		$("#teacherscontact").hide();
		$("#parentscontact").show();
	});
	$("#revealteacherform").click(function() {
		$("#parentscontact").hide();
		$("#teacherscontact").show();
	});

});