$(function(){
	$("a[id^=cloud_tag_]").each(function(){

		$(this).click(function(){
			id = $(this).attr('id').replace('cloud_tag_','');
			$.get('recount_click.php',{id:id},function(data){
				console.log(data);
			});
		});
	});

});
