i_url = 'http://yar-life.ru/i/';
var emotions = {
    "1":"ñìåøíî",
    "2":"èíòåðåñíî",
    "3":"êðàñèâî",
    "4":"óäèâèë",
    "5":"íå ïîíðàâèëîñü",
    "6":"áðåä",
    "7":"ñîãëàñåí",
    "8":"íå ñîãëàñåí",
    "9":"óæàñ",
    "10":"íåïðàâäà",
    "11":"ïîíðàâèëîñü",
    "12":"ïðàâèëüíî"
    };
$(document).ready(function()
{
    $("#person_slide_from").val("0");
    l_active('manage_person');r_active('manage_person');

    $(".emo_do").toggle(function(){
       //news_id = $(this).attr("id").replace(/emo_(\d+)/, "$1");
       $('#votesn').show();
    }, function(){
        $('#votesn').hide();
    });
    $(".emo_vote").click(function(){
       news_id = $(this).attr("id").replace(/emovote_\d+_(\d+)/, "$1");
       emo_id = $(this).attr("id").replace(/emovote_(\d+)_\d+/, "$1");

       $.getJSON("/js/ajax/news/ajax.php", {action:"emo_vote", news_id: news_id, emo_id:emo_id}, function (results){
            $("#votes_res").empty().append('<img src="'+i_url+'emo.png" title="Ýìîöèè" alt="Ýìîöèè" width="16" height="16"/>');
            $.each(results, function(i,item){
                 $("#votes_res").append('<span class="emo">'+emotions[item.emotion]+'<sup>'+item.chislo+'</sup></span>&nbsp; ');
            });

            $("#votesn").empty().hide();
            $("#emo_"+news_id).empty();
        });
    });

    $("#add_question").submit(function(){
        if ($("#question").val() == '')
        {
            alert("Íå ââåäåí âîïðîñ;");$("#question").focus();return false;
        }
       //return false;
    });
});
