// Execute when the dom is loaded
$(document).ready(function(){
	// Hide all of the answers
	$("div.answer").hide();
	
	// Set our toggle functions
	$("h4 a").toggle(function(){
		// toggle on
		$(this).addClass("on");
		$(this).parent().siblings(".answer").show("normal");
		$(this).children("span.toggle").text("-");
	},function(){
		// toggle off
		$(this).removeClass("on")
		$(this).parent().siblings(".answer").hide("normal");
		$(this).children("span.toggle").text("+");
	});
});