$(function(){
	// ================================================
	//	CLICK BINDING
	// ================================================
	$("body").delegate("img.ad_image", "click", function(){
		ad_click($(this).attr("href_src"), $(this).attr("id").substr(3));
	});
});

function ad_click(href, id)
{
	$.ajax({
		type:	"GET",
		url:	"includes/ads/ad_update_clicks.php",
		data:	{id_send: id},
		success: click_updated,
		error:  ajax_error
	});
	
	if(href != "")
		window.open(href);
}

function click_updated(data, status)
{
	//alert(data);
}

function ajax_error(xhr, reason, ex)
{
	//alert(reason);
}
