$(document).ready(function(){   
	$("a[href^='http']").attr("target","_blank");
  
	// appel en AJAX la fonction attr[REL]/compteur
  $("a[class='site']").click(function () { 
      if($(this).attr("rel") && $(this).attr("rel") != ''){
      //document.location.href = webRoot +'campings/compteur/'+ $(this).attr("id"); 
      $.ajax({
        type: "GET",
        cache: false,
        url: webRoot + $(this).attr("rel") +'/compteur/'+ $(this).attr("id")
      });
    }
  });
  
  $("a[class='pub']").click(function () { 
    //document.location.href = webRoot +'campings/compteur/'+ $(this).attr("id"); 
    $.ajax({
      type: "GET",
      cache: false,
      url: webRoot +'pubs/compteur/'+ $(this).attr("id")
    });
    //return false;
  });
});
