/* -----------------------------------------------------------------------------
>> 外部リンクのクリック数カウント
----------------------------------------------------------------------------- */

$(document).ready(function() {
	$('.countlink').each(function() {
		$(this).click(function() {
			cp.id = $(this).attr('id');
			$.post(
				'./js/count.ajax',
				cp,
				function(res) {
					res = eval(res);
					//if (!res.result) window.alert('Error!');
				}
			);
		});
	});
});
