function likeBox(slug) {
    if (slug == '') {
        $('#page-like-box').empty().hide();
    } else {
        var html = '<iframe src="http://www.facebook.com/plugins/like.php?app_id=143219012426614&amp;href=http%3A%2F%2Fwww.tegomitrzeba.pl%2F' + slug + '&amp;send=false&amp;layout=box_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=90" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:90px;" allowTransparency="true"></iframe>';
        $('#page-like-box').html(html).show();
    }
}

$(document).ready(function () {
    $('div#show-facebook-box').toggle(function() {
        $('div#facebook-like-box').stop(true, false);
        $('div#facebook-like-box').animate({
            right: 0
        });
    }, function() {
        $('div#facebook-like-box').stop(true, false);
        $('div#facebook-like-box').animate({
            right: -294 + 'px'
        });
    });
    likeBox('');
});
