$(document).ready(function(){

	//hide faq_body after the first one
	$(".faq_list .faq_answer:gt(-1)").hide();
	
	//toggle faq_body
	$(".faq_header").click(function(){
		$(this).next(".faq_answer").slideToggle(500)
		return false;
	});

	//collapse all faqs
	$(".collpase_all_faqs").click(function(){
		$(".faq_answer").slideUp(500)
		return false;
	});

	//show all faqs
	$(".show_all_faqs").click(function(){
		$(this).hide()
		$(".show_recent_only").show()
		$(".message_list li:gt(4)").slideDown()
		return false;
	});

});