$(document).ready(function() {
	$(".show_answer").css({'cursor' : 'pointer'});
	$(".show_answer").css({'color' : '#3333cc'});
	$(".show_answer").css({'background-color' : 'transparent'});
	$(".show_answer").css({'text-decoration' : 'underline'});
	$(".answer").hide();
	$(".show_answer").click(function() {
		$(".show_answer").hide();
		$(".answer").show("slow");
	});
})
