$(function(){
	$('.answer').hide().prev('.question').addClass('clickable')
	.click(function(){
		$(this)
		.toggleClass('show')
		.next('.answer')
		.toggle('fast');
		return false;
	})
	.children('p')
		.wrapInner('<a href="#"></a>')
		.find('a')
			.each(function(){
				var qid = $(this).parents('li:first').attr('id');
				$(this).attr('href','#' + qid);
			})
		.end();
});
