/* Skrypt do galerii na g��wnej stronie */

$(document).ready(function (){
	$(".zdjecia_pokaz").cycle({ 
		fx:     'fade',
		speed: 	'slow',
		prev:   '.prev', 
		next:	'.next',
		pager:	'.pager',   
		timeout: 2500,
		before:	tytul 
	});
	function tytul() {
		$('.info').html(this.alt); 
} 	
});





/* Skrypt do galerii w podrozdziałach ( np. wizualizacje ) */



$(document).ready(function (){
	$(".zdjecia_pokaz1").cycle({ 
		fx:     'scrollHorz',
		speed: 	'slow',
		prev:   '.prev', 
		next:	'.next',
		pager:	'.pager',   
		timeout: 0,
		before:	tytul 
	});
	function tytul() {
		$('.info').html(this.alt); 
} 	
});


/* Skrypt do galerii w portfolio */

$(document).ready(function (){
	$(".zdjecia_pokaz2").cycle({ 
		fx:     'fade',
		speed: 	'fast',
		prev:   '.prev', 
		next:	'.next',
		pager:	'.pager',   
		timeout: 2000,
		before:	tytul 
	});
	function tytul() {
		$('.info').html(this.alt); 
} 	
});
