jQuery(document).ready( function($) {
	if ($("span.your-date input:first").length) {$("span.your-date input:first").datepicker({}); }
	$(".answer").hide();
	$(".question").click( function() {
		if($(this).next().is(':hidden'))	$(this).next().show();
		else					$(this).next().hide();
	});
});

