$(function(){

$("a.vote_up").click(function(){
the_id = $(this).attr('id'); 
gid = $(this).attr('gid'); 
prid = $(this).attr('prid');
$(this).parent().html("<img src='/i/spinner.gif'/>");
$("span#votes_count"+the_id).fadeOut("fast");
  

  // ajax - запрос
  $.ajax({
  type: "POST",
  data: "action=vote_up&id="+$(this).attr("id")+"&gid="+$(this).attr("gid")+"&prid="+$(this).attr("prid"),
  url: "/newvote.svs",
dataType:"json",
  success: function(msg)
  {
for (var key in msg) {
 var val = msg [key];
$("span#votes_count"+key).html(val);
 }
  
	
  $("span#votes_count"+the_id).fadeIn();
  $("span#vote_buttons"+the_id).remove();
  }
  });
  });
  

  }); 
