$(document).ready(function(){
	$("#addVote").click(function(){
		$(this).unbind("click");
		addVote( $(this).attr("blogid") );
	});	
});

function addVote( id ){
	$.ajax({
		  type: "POST",
		  url: "/blogs/addvote/" + id,
		  dataType: 'json',
		  success : function(msg){
		  			$("div.votes_count .number").html( msg.Blog.votes );
		  		},
		  error : function(){
		  			alert("An error has occur. Please try again.")
		  			$("#addVote").bind("click");
		  		}
	});
}