$(document).ready(function() {

    var root_url = $('base').first().attr('href');	
    $('#fanbox iframe').attr('allowTransparency','true');

    $('#facebox').mouseenter(show_facebox);
    $('#facebox').mouseleave(hide_facebox);
    $.preload(root_url+"images/agencja-reklamowa-a.png",root_url+"images/ceramika-reklamowa-a.png",root_url+"images/druk-cyfrowy-a.png",root_url+"images/foto-tapety-a.png",root_url+"images/gadzety-reklamowe-a.png",root_url+"images/grafika-na-pojazdach-a.png",root_url+"images/produkcja-kalendarzy-a.png");
});

jQuery.preload = function()
{
    for(var i = 0; i<arguments.length; i++)
    {
        jQuery("<img>").attr("src", arguments[i]);
    }
}

function show_facebox(){
    $('#facebox').stop().animate({
        right: '0'
    },500);
}

function hide_facebox(){
    $('#facebox').stop().animate({
        right: '-221px'
    },500);
}
