/**
 * Log search entity clicks
 */
$(document).ready(function()
{
	$(".search-result a").bind('click',record_clicked_search_result);
});

function record_clicked_search_result(event)
{
	var ajax_post_obj = new Object();
	
	//Class name of anchors are `entityType-entityId`
	ajax_post_obj.entity_type = this.className.split('-')[0];
	ajax_post_obj.entity_id = this.className.split('-')[1];
	
	$.post('/search/record_clicked_search_result',ajax_post_obj,function(response){});
	
	return false;
}