$(document).ready(function(){


    $(".vote_button").click(function(){
    
        var $thisA = $(this);
        var $parentItem = $thisA.closest(".list_item");
        
        if($thisA.is(".voted")) {
            return false;
        }
        
        var id = $thisA.attr("rel");
        var thanks = $('<strong style="display:none">თქვენი ხმა მიღებულია!</strong>');
        
        if($thisA.is(".vote_yes")) {
            var vote = 1;
        } else {
            var vote = 0;
        }
        
        $.post("index.php", {id:id,vote:vote}, function(data) {
            // oh, how nice of you!
        });
        
        $("span", $parentItem).fadeOut("normal", function(){
            $(this).after(thanks);
            $(thanks).fadeIn();
        });
        
        return false;        
    
    
    });



});