// JavaScript Document
$(document).ready(function() {
	$('.answer').hide();
	
	$('.question a').click(function() {
		$(this).parent().find(".close").show('slow');
		$(this).parent().next().show('slow');
	});
	
	$('.close').click(function() {
		$(this).hide('slow');
		$(this).parent().parent().find(".answer").hide('slow');
	});
});

