$(document).ready(function(){
	$('.blog-summary:last').addClass('summary-last');
	
	/* Gallery */
	$('.gallery ul').clgallery({
		showhidenav: false
	});
});

function reportComment(comment) {
	if( !confirm("Are you sure you want to report this comment") ) {
		return;
	}

	$.post(rootContext + "/reportcomment.do", {id:comment}, reportUpdated);
	$("#reportcomment" + comment).html("Your report has been sent");
}

function reportUpdated(data) {
	var output = "Error";
	if( data.match(/=/) ) { 
		output = data.substring(data.indexOf("=") + 1);
		alert(output);
	}
}
