$(function(){

    $("a.vote_up").click(function(){
        the_id = $(this).attr('id'); 
		
        $(this).parent().html("<br> <img src='http://webdigg.ru/sp-content/themes/webdigg.ru/templates/images/spinner.gif'/>");
        $("span#votes_count_"+the_id).fadeOut("fast");

        // ajax - запрос
        $.ajax({
            type: "POST",
            data: "action=digg_up&id="+$(this).attr("id"),
            url: "http://webdigg.ru/digg.html",
            success: function(msg)
            {
                $("span#votes_count_"+the_id).html(msg);
                $("span#votes_count_"+the_id).fadeIn();
                $("span#vote_buttons_"+the_id).remove();
            }
       });
    });
  
    $("a.vote_down").click(function(){
        the_id = $(this).attr('id');
		
		$(this).parent().html("<br> <img src='http://webdigg.ru/sp-content/themes/webdigg.ru/templates/images/spinner.gif'/>");
		$("span#votes_count_"+the_id).fadeOut("fast");
		
		// ajax - запрос
        $.ajax({
            type: "POST",
            data: "action=digg_down&id="+$(this).attr("id"),
            url: "http://webdigg.ru/digg.html",
            success: function(msg)
            {
                $("span#votes_count_"+the_id).html(msg);
                $("span#votes_count_"+the_id).fadeIn();
                $("span#vote_buttons_"+the_id).remove();
            }
        });
    });
	
}); 
