jQuery(document).ready(function(){
	jQuery(".answer").hide();
	jQuery("#faq-form").hide();
	 
	jQuery(".question a").click(function(){
		//jQuery(this).parent().next("tr:first").toggle();
		jQuery(this).parents('tr').next("tr").toggle();
		return false;
	});

	jQuery("#efaqform a").click(function(){
		jQuery("#faq-form").toggle("slow");    
		return false;
	});
	jQuery("#faq").tablesorter();

});