
var handle_facebook = function() {
    if (!jQuery('#fb-root').length)
        return;

    window.fbAsyncInit = function() {
        FB.init({
            appId: '223752184320128',
            status: true,
            cookie: true,
            xfbml: true
        });
    };

    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol + '//connect.facebook.net/pl_PL/all.js';
    document.getElementById('fb-root').appendChild(e);
}

$j(function() {
	handle_facebook();
});



