$(document).ready(function(){
	$('a.track_this_link').click(function() {
		$.post(base+'ajax/click.php', {id:this.id});
		return true;
	});
});

