$(document).ready(function(){
	$('.slideshow').cycle({
		fx: 'fade',
		speed:  2500,
		timeout:  2000 
	});
	
	$('.hidden').hide();
	$('.showed').show();
	

	//zewnetrzne linki
	$('a.external').live('click', function() {
		window.open(this.href);
		return false;
	});
	
	// lightbox
    $("a[rel*=lightbox]").lightBox({
			imageLoading: '/img/ico_loading_light.gif',
			imageBtnClose: '/img/lightbox/close.gif',
			imageBtnPrev: '/img/lightbox/prev.gif',
			imageBtnNext: '/img/lightbox/next.gif',
			txtImage: 'Zdjęcie',
			txtOf: 'z'
    });
});
