$(document).ready(function (){
	$(".zdjecia_pokaz").cycle({ 
		fx:     'scrollHorz',
		speed: 	'slow',
		prev:   '.prev', 
		next:	'.next',
		pager:	'.pager',   
		timeout: 10000,
		before:	tytul 
	});
	function tytul() {
		$('.info').html(this.alt); 
} 	
});

$(document).ready(function() {
                $(".gallery img").fadeTo("fast", .8);
                $(".gallery img").hover(function(){
                        $(this).fadeTo("fast", 1);
                },function(){
                        $(this).fadeTo("fast", .8);
                });
});

 $(document).ready(function() {
                $(".gallery2 img").fadeTo("fast", .8);
                $(".gallery2 img").hover(function(){
                        $(this).fadeTo("fast", 1);
                },function(){
                        $(this).fadeTo("fast", .8);
                });
});


$(function() {
        $('.gallery a').lightBox();
    });


$(function() {
        $('.gallery2 a').lightBox();
    });

