jQuery(document).ready(function() {
	// Set up the document. Hide necessary elements.
	
	$("dd").hide();
	$("#collapse-all").hide();
	
	$("dt").each(function(i) {
		$(this).prepend("Q: ");
	});
	$("dd").each(function(i) {
		$(this).prepend("A: ");
	});

	
	// Set up the events.
	$("dt").click(function() {
		$(this).next().slideToggle();
	});
	$("dt").hover(function() {
		// change cursor to link hand icon
		document.body.style.cursor="pointer";
	}, function() {
		// change cursor to link hand icon
		document.body.style.cursor="auto";
	});
	
	$("#expand-all").click(function() {
		$("dd").slideDown();
		$("#expand-all").hide();
		$("#collapse-all").show();
	});
	$("#collapse-all").click(function() {
		$("dd").slideUp();
		$("#collapse-all").hide();
		$("#expand-all").show();
	});
});