{"id":17,"hits":1374,"path":"intro"}
function hits() {
$.ajax({
url: "/static/ajax/paper/hits/<?=urlencode($_GET['path']);?>",cache: false,success: function(html){
$("#hits").html(html);
}
});
}
$(document).ready(function(){
hits();setInterval('hits()',4000);
});