$(function(){
	
	$("dd.answer")
		.hide();
	
	$("dl.faq dt")
		.append("<br /><a href='#' title='Reveal Post' class='answer-tab'>Read the rest of this entry »</a>");
		
	$(".answer-tab")
		.click(function(){
			$(this)
				.parent().parent()
				.find("dd.answer")
				.slideToggle();
            return false;
		});
});

