		$("a.vote").click(function(e){
			e.preventDefault();
			$.get("vote.php", {review : $(this).attr("id"), link : $(this).html()}, function(response){

                if (response.toString().indexOf("OK:") === -1)
				{
					alert(response);
				}
				else
				{
                    var newScore = response.toString().replace("OK:", "");
					alert(newScore);
				}
			});
		});


