
var lsFavourite={};

$(document).ready(function() {
    lsFavourite.toggle = function(topic_id, star_el, fv_type){
        
        if ($('.lightbox').length !== 0){
            $('#do-register').click();
            return;
        }
        
        
        $.post('/blogs-ajax/fav/'+topic_id+'/',{"yauzaa":Math.random()},function(resp){
            if (resp == 'ok'){
                $(star_el).parent().toggleClass('active');
            }else{
                alert('ошибка! попробуйте позднее!');
            }
        });
        
    }
});
