/**** Comments Javascript File ****/

//Recaptcha theme settings
var RecaptchaOptions = {
	theme : 'white'
};

//Flags a comment as inappropriate
function report_comment(id)
{
	jQuery.get("/ajax/report_comment.php", { commentid: id },
	function(data){
		$("#report-comment").html(data);
	});
	
	return false;
}