//Written by Pete Martin
//Adds an onclick event to links within most commented, most popular and most emailed to enable the use of them to be tracked with Site Catalyst
(function($) {
	$('.active_block h4 a').click(function () {

	var itemIndex = $('.active_block h4 a').index(this);
	var block = 'unknown';
	var currentPage = mc_page;
	
	var type;
	if (itemIndex < 5) {
		itemIndex = itemIndex + 1;
		type = 1;
		blockItemClicked(itemIndex, type, currentPage);
	} else if (itemIndex < 10) {
		itemIndex = itemIndex - 4;
		type = 2;
		blockItemClicked(itemIndex, type, currentPage);
	} else {
		itemIndex = itemIndex - 9;
		type = 3;
		blockItemClicked(itemIndex, type, currentPage);
	}
		
});

})(jQuery);
