$(document).ready(function(){
	
	$('a.pub-compteur-click-link').click(function(event){
		event.preventDefault();
		
		var url = $(this).attr('href');
		var target = $(this).attr('target');
		
		$.post('/AJAX/update-pub-click.php',{id_pub:$(this).attr('rel')},function(){
			
			if( target == "_self" ) window.location.href =url;
			if( target == "_blank" ) window.open(url,'FMC');
			
		});
	});
});
