﻿$(document).ready(function() {
	
	
	// Text ve vyhledávacím poly
	var search_text = 'Vyhledat na webu...';
	$('#search input[name=q]').val(search_text);
	
	$('#search input[name=q]').focus(function() {
		if ($(this).val() == search_text) {
			$(this).val('');
		}
	});
	
	$('#search input[name=q]').blur(function() {
		if ($(this).val() == '') {
			$(this).val(search_text);
		}
	});
	
	$('#search').submit(function() {
		if ($('#search input[name=q]').val() == search_text) {
			$('#search input[name=q]').val('');
		}
	});
	
	// Prolínačka
	$(function(){
	    $('.slideshow img:gt(0)').hide();
	    setInterval(function(){
	      $('.slideshow :first-child').fadeOut()
	         .next('img').fadeIn()
	         .end().appendTo('.slideshow');}, 
	      5000);
	});
	
	// Lightbox
	$('a[rel=lightbox]').lightBox({
		imageLoading: '/img/lightbox/loading.gif',
		imageBtnClose: '/img/lightbox/close.gif',
		imageBtnPrev: '/img/lightbox/prev.gif',
		imageBtnNext: '/img/lightbox/next.gif',
		txtImage: 'Obrázek',
		txtOf: 'z',
	});
	
});
