$(function() {
	$('#rotacka')
	.before('<div id="nav">')
	.cycle({
	    fx:     'scrollLeft',
	    speed:  3000,
	    timeout: 8000,
	    pager:  '#nav'
	});
});

$(document).ready(function(){$('a[rel*=lightbox]').lightBox({
	imageLoading: '/img/lightbox/loading.gif',
	imageBtnClose: '/img/lightbox/close.gif',
	imageBtnPrev: '/img/lightbox/prev.gif',
	imageBtnNext: '/img/lightbox/next.gif'});
});

$(document).ready(function(){
	$('#akce_registrace').change(function(){
		if ($(this).attr('checked')) {
			$('#novinky_show').show('fast');
		} else {
			$('#novinky_show').hide('fast');
		};
	});
	
});
