// JavaScript Document

$(document).ready(function() {	 

	 
	$('.faq_question h3').click(function() { 
		
		var bingo = $(this).attr('id');
		var exploded = bingo.split('_');
		
		$('.faq_question_answer').hide('slow');

		$('#faqa_'+exploded[1]).show('slow');

		 
	}); 
	 
	 		
	
});
