// On page load
$(document).ready(function(){
	initAds();
});

// Initialize ad tracking
function initAds(){
	$('span.hs_ad a').click(function(){
		cid = $(this).parents('span.hs_ad').attr('cid');
		loc = $(this).parents('span.hs_ad').attr('loc');
		
		jQuery.ajax({
			global: false,
			async: false, // Async prevents clicks getting lost when the actual click completes before the ajax request.
			url: '/shared_assets/ajax/?module=ad&event=lc&id=' + cid + '&loc='+loc,
		});
	});
}

