Cufon.replace('h1, .side-box h2, .content-box h2:not(ul *), #motive-box h2, #main-menu ul li a', { hover: true });

$.fn.inputDefaultText = function(options)
{
	options = $.extend({
		text: 'Hledaný výraz'
	}, 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()
{
	$('#newsletter-email.cz').inputDefaultText({ text: 'Váš e-mail'});
	$('#newsletter-email.en').inputDefaultText({ text: 'Your e-mail'});
	$('#q.cz').inputDefaultText({ text: 'Hledaný výraz'});
	$('#q.en').inputDefaultText({ text: 'Search term'});
	$.fn.kfBox && $('.lightbox').kfBox();
	$.fn.kfBox && $('.related-images a').kfBox();
});

$(window).load(function()
{
	$.fn.cycle && $('#motives').cycle({
		fx: 'fade',
		pause: 1,
		speed: 1000,
		timeout: 4000
	});
});
