function likeThis(postId,id) {
    if (postId != '') {
        jQuery('#iLikeThis-'+postId+' .counter').text('...');
		
        jQuery.post(blogUrl + "/wp-content/plugins/i-like-this/like.php",
        {
            id: postId
        },
        function(data){
            jQuery('#iLikeThis-'+postId+' .counter').html(data);
        });
    }
	
    var a =document.getElementById(id);
    if(a.style.display=="none"){
        a.style.display="block";
    }else{
        a.style.display="none";
    }
}
/*
function afficher(id) {
var a =document.getElementById(id);
if(a.style.display=="none"){
a.style.display="block"; 
}else{
a.style.display="none"; 
}
}
*/