jQuery(document).ready(function() {
	//hide answers
	$("div.indent2").hide();
	$("p.indent1").click(function(){
								  //toggle the next paragraph
								  $(this).next().toggle();
								   //don't let the link opperate
								   return false;
								   });
	$("p.indent2").click(function(){
								   //don't let the link opperate
								   return true;
								   });
});
