$(function(){
    $(".submit_voting").click(function () {
        $id = $("#balsavimas input:checked").val();
        $link = "/voting/" + $id;
        $("#voting_results").load($link);
        return false;
    });

    $("a").not(".target_none").filter(function() {
        return this.hostname && this.hostname !== location.hostname;
    }).attr('target', '_blank');
});

