function submit_vote(type, id, vote, load, rate)
{
  $.ajax({
    url: "/ajax.vote.php",
    data: { id: id, mark: vote, type: type },
    type: "post", 
    success: function(data){
      $(rate).html(data);
    },
    beforeSend: function()
    {
      $(load).show();
    },                                                  
    complete: function()
    {
      $(load).hide();
    }                                                  

  });
}
