$(document).ready(function() {
	$("a[rel=nofollow]").click(function(){
		$.post("/common/clickcounter.php", { url: this.href }, function(data){
		    document.location = data;
		});
		return false;
	});
});
