var CURRENT_POST = '';

function openPost(id){
    if(CURRENT_POST == id){
        return true;
    } else {
        return false;
    }
}

function togglePost(id){
    if(CURRENT_POST != id){
        $('#' + CURRENT_POST).hide('slow', function(){
            $('#' + id).show('slow');
        });
        CURRENT_POST = id;
    }
    return true;
}

$(function(){
    var first = $('.post:first');
    if(first){
        CURRENT_POST = first.attr('id');
        first.show('normal');
    }
});

function postFavorite(id){
    $.post(
        '/post/favorite',
        {id:id},
        function(json, status){
            if(json.result == 2) alert('Убрали из избранного! ');
            if(json.result == 1) alert('Добавили в избранное! ');
        },
        'json'
    );
}