var Banner = {
    //zestaw funkcji odpowiadających za obsługę banera
    
    _close : null,
    
   
    init : function(){
        $('#banerdiv').css({          
           position     : 'absolute',
           top          : 0,
           left         : 0,
           width        : $(window).width(),
           height       : $(window).height()
        });
        

        $('#banerdiv').flash(
        {
            id      : 'banerflash',
            swf     : 'baners/baner-kropla.swf',
            height  : $(window).height(),
            width   : $(window).width(),
            wmode   : 'transparent'
        });

        
    },
    close : function() {
       
       $('#banerdiv').css({          
          display   : "none"
       });


    } 
}

function closead(){
    
    Banner.close();
}

/**
 * Oczekuje na zaladowanie i sparsowanie html`a w dokumencie strony
 */

$(document).ready(function(){  
    if($('#banerdiv').length>0) {        
        Banner.init();
        $(window).resize(function(){            
            $('#banerdiv').css({
                width   : $(window).width(),
                height   : $(window).height()
            })
            $('#banerflash').css({
                width   : $(window).width(),
                height   : $(window).height()
            })
        });
    }

    //galeria obrazów PrettyPhoto
    $("a[rel^='prettyPhoto']").prettyPhoto({
        theme: 'light_square',/* light_rounded / dark_rounded / light_square / dark_square / facebook */
        overlay_gallery: false,
        allow_resize: false,
        default_width: 800,
        default_height: 800
    });
});

        
   



