// JavaScript Document

 $(document).ready(function(){
 	
	// change to the appropriate class for production site
	$(".page-item-5042 a:first").attr("href", "#");
	$(".page-item-5042 a:first").attr("class", "pointer");
	$(".page-item-5044 a:first").attr("href", "#");
	$(".page-item-5044 a:first").attr("class", "pointer");

 	$(".answer").hide();

	$(".question").click(function(){
		$(this).next(".answer").slideToggle(200, function() {
	if ($(this).prev(".question").attr("class") != "question open")
		$(this).prev(".question").attr("class", "question open");
	else
		$(this).prev(".question").attr("class", "question closed");
 	 });
	});
});
