// JavaScript Document

$(function(){
	
	
	
	
	$(".contentArea #qaContainer").click(function(){
		$(".answer").slideUp("normal");
		$(".answer",this).slideDown("fast");
		return false;
	
	});
	
	$('.show').show();
	
})
