$(document).ready(function(){   
	$("a[href^='http']").attr("target","_blank");
  
	$("a[class='site']").click(function () {
    //document.location.href = webRoot +'campings/compteur/'+ $(this).attr("id"); 
    $.ajax({
      type: "GET",
      cache: false,
      url: webRoot +'campings/compteur/'+ $(this).attr("id")
    });
    //return false;
  });
});
