$(document).ready(function(){ 
			
	$("#FAQs a").click(function() {															 
		var commentIDValSplitter 	= (this.id).split("_");		
		var commentIDVal 			= commentIDValSplitter[1];
	
		$.ajax({  
			type: "POST",  
			url: "./common/FAQs_ajax.php",  
			data: {action: "Question", commentID: commentIDVal},  
			success: function(theResponse) {					
				$("#Answer").html("Vui lòng đợi...");
				$("#Answer").html(theResponse);
				$("#Answer").hide();
				$("#Answer").show("slow");
			}  				
		});
				
	});
	
});
