$(function(){
    $('div#header ul.buttons li.print a').click(function(){
        window.open($(this).attr('href'), '', 'toolbar=no,menubar=no,scrollbars=yes,resizable=yes,height=550,width=640,top='+(window.screen.availHeight/2-(700/2))+',left='+(window.screen.availWidth/2-(710/2)));
        return false;
    });
    
    $('div.text a > img').each(function(){
        $(this.parentNode).attr('rel', 'superbox[image]').addClass('thumbnail');
    });
    
    $('div#menu ul.main > li.main').hover(function(){
        $(this).addClass('hover');
    }, function(){
        $(this).removeClass('hover');
    });
    $.superbox.settings = {
        boxId: "superbox", // Id attribute of the "superbox" element
        boxClasses: "", // Class of the "superbox" element
        overlayOpacity: 0.2, // Background opaqueness
        boxWidth: "600", // Default width of the box
        boxHeight: "400", // Default height of the box
        loadTxt: "Ładowanie...", // Loading text
        closeTxt: "Zamknij", // "Close" button text
        prevTxt: "Poprzedni", // "Previous" button text
        nextTxt: "Następny" // "Next" button text
        };
    $.superbox();
});