
$.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()
{	
	$('.att-images a').kfBox({ 
		pageSpan: 4
	});

	$('#q').inputDefaultText({ text: searchon + ' Tebo'});
	
	$('a.external').click(function(){return !window.open($(this).attr("href"))});

	$('#send-contact-form').submit(function(){
		var re = new RegExp("^(.)+@(.)+\.(.)+");
		var email = $('#contact_email').attr("value");
		var r = email.match(re);
		
		if ($('#contact_text').attr("value") == "" || !r) {
			alert("Zprávu se nepodařilo odeslat, vyplnili jste správně všechny údaje?");
			return false;
		}
	})
	
	$('.bnr').cycle({
		fx: 'fade',
		pause: 1,
		speed: 1000,
		timeout: 4000,
		delay: 10000
		}
	);	
});

