function incrementViews(id) {
	var params = {ejaxKey: 'incrementViews', contentId: id };
	jQuery.post('/relay.php', params, handleEjaxResponse);
}

function handleEjaxResponse(data) {}

