function sortReviews(attr, asc) {
	$(".review").tsort('li.' + attr, {order: (asc ? 'asc' : 'desc')});
}

function displayContent(url, comments) {
	$.fn.colorbox({href:url, iframe:true, open:true, width:400, height:(comments ? 500 : 300)});
}