 $(document).ready(function(){
	

  	$("#carousel").jCarouselLite({
        auto: 5000,
        speed: 600
   	});
	
	$("a[rel^='lightbox']").lightBox({
		txtImage: "Fotografie",
		txtOf: 'z'
		});


//	obarvení tabulek
	$("table.barevna tr:even td").css("background", "#f2f9fe");



	$(".sport a").mouseover(function(){
		var obj = $(this);
		timerId = setInterval(function(){
		changeArrow(obj);
		}, 500);
	});

	$(".sport a").mouseout(function(){
		clearInterval(timerId);
		$(".sport a strong").attr('class', '');	
	});

	function changeArrow(obj)
		{
		if ($(obj).children().hasClass('sipky3'))
			$(obj).children().removeClass('sipky3');
		else if ($(obj).children().hasClass('sipky2'))
			$(obj).children().removeClass('sipky2').addClass('sipky3');
		else
			$(obj).children().addClass('sipky2');
		}

	//faq
	$("ul.faq li a").click(function()
		{
	    $(this).next("div").slideToggle(300); //.siblings("div.menu_body").slideUp("slow");
		});	


	//page scroll
	var hash = document.location.hash;
	if (hash!='')
		{
		hash = hash.replace('#','');
		if ($('a[name='+hash+']').length>0)
			{
			var destination = $('a[name='+hash+']').offset().top;
			$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
			}
		}

 });
