		var arrowimages={down:['downarrowclass', 'images/arrow-down.gif', 30], right:['rightarrowclass', 'images/arrow-right.gif']};

		$(document).ready(function(){
		
			$('#uvodni-fota img').each(function(){
				var newSrc = $(this).attr("alt").replace("*", "<strong>").replace("*", "</strong>");
				$(this).attr("alt", newSrc);
			});

			$('#uvodni-fota').jqFancyTransitions({
				effect: 'curtain',
				width: 793,
				height: 273,
				strips: 20,
				delay: 4000,
				stripDelay: 50,
				titleOpacity: 0.7,
				titleSpeed: 1000
			});

			$('a.external').click(function() {
				window.open(this.href);
				return false;
			});
			
			$("#vyber li").click(function(){
				window.location=$(this).find("a").attr("href");return false;
			});
			
			$("#vyber li").mouseenter(function(){
				$(this).fadeOut(50);$(this).fadeIn(150);
			});
			
			$('#hlavicka').corner('top');
			$('#pata').corner('bottom');
			
			$("a[rel='nahled']").colorbox({transition:"fade", opacity:0.5, current:"{current}/{total}"});

		});
