// Prepaid FAQ Animation

$(document).ready(function() {

	$('div.ans').each(function(){
		$(this).css("height", $(this).height()+"px");
		$(this).hide();
	}); 
	
	// Open the fist question initially
	$('div.qst:first').toggleClass('on');
	$('div.qst:first').next('div.ans').slideToggle();

	
	$('div.qst').click(function() {
	
		// Click only if item isn't already open
		if (!$(this).hasClass('on')) {
			
			// Remove and add on state
			$('div.qst').removeClass('on');
			$(this).toggleClass('on');
			
			// Slide animation	
			$('div.ans').slideUp();
			$(this).next('div.ans').slideToggle();
		}
		return false;
  });

});