var BASE_HREF = BASE_HREF || '../';

$.fn.inputDefaultText = function(options)
{  
	options = $.extend({
		text: 'Hledany vyraz'
	}, options);
	
	return this
		.val(options.text)
		.bind('focus', function(){ if(this.value == options.text) this.value = ''; })
		.bind('blur', function(){ if(this.value == '') this.value = options.text; });
};

$(document).ready(function()
{
	$.fn.kfBox && $('.lightbox').kfBox();
	
	$('table tr:nth-child(even)').addClass('even');
	
	$('#q').inputDefaultText({ text: 'Hledaný výraz'});

	if($.fn.cycle)
	{
		$('#motive-box').height(294);
		$('#motive').cycle({
	//		fx: 'scrollUp',
			pause: 1,
			speed: 1000,
			timeout: 3000,
			pager:  '#motive-pager'
		});	
	}
	
	/* Captcha */
	if (typeof(captcha) != "undefined") {
		$("#form-captcha").attr("value", captcha);
		//$(".captcha").hide();
	}
});
