function vote(i)
{
    $.get("/posts/vote/"+i, {},
       function(returned_data)
       {
           document.getElementById("div_vote").innerHTML=returned_data;
           return false;
       });
}
function myvote(v,i)
{
    $.get("/posts/myvote/"+v+"/"+i, {},
       function(returned_data)
       {
           document.getElementById("div_vote").innerHTML=returned_data;
           return false;
       });
}




$(document).ready(function(){



});