function DrukujDojazd(url, width, height, scrollbars) {
 var Win=window.open(url,"ToDo",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=' + scrollbars + ',menubar=no' );
}

$(window).load(function() {
		
		// NIVO SLIDER
		$('#slider').nivoSlider();
		
		
		// LIGHTBOX
		$('a[rel*=lightbox]').lightBox();
		
		
		// CYCLE
		$('#s1').cycle({ 
				fx:     	'fade', 
				speed:		'slow', 
				timeout:	6000, 
				pause:		true,
				next:			'.next', 
				prev:			'.prev'
		});
});

