$(function()
{
	$("a[@id^='l']").bind("click", function()
	{
		itemid = this.id.substring(1);
		
		$.ajax(
		{
			type: "GET",
			url: root + 'ppc-counter.php',
			async: false,
			data: "id=" + itemid,
			success: function()
			{
				return true;
			}
		});
		
		return true;
	});
});
