
var AD_ID = 0;
var AD_TO = false;

function nextAd()
{
	var size = $('div.ad').size();
	AD_ID++;
	if(AD_ID == size) AD_ID = 0;

	$('.adPage').removeClass('act');
	$('#adPage' + AD_ID).addClass('act');

	$('.ad').hide();
	$('#ad' + AD_ID).fadeIn();

	AD_TO = setTimeout('nextAd()', 3000);
}
	
$(document).ready(function(){

	//$('.lb').lightBox();
	//$('.lb2').lightBox();

$('#pageNumInput').keypress(function(e){
      if(e.which == 13){
       $('form#pageNumForm').submit();
	   e.preventDefault();
       }
      });
	

	$('a.adPage').click(function(){
		var id = $(this).attr('id');
		id = id.replace('adPage', '') * 1;

		$('.adPage').removeClass('act');
		$(this).addClass('act');

		$('.ad').hide();
		$('#ad' + id).fadeIn();

		clearTimeout(AD_TO);

	});

	AD_TO = setTimeout('nextAd()', 3000);

});


function chkCenik(f)
{
	if(f.jmeno.value == '') {
		alert("Zadejte Vaše jméno");
		f.jmeno.focus();
		return false;
	}
	if(f.email.value == '') {
		alert("Zadejte Váš e-mail");
		f.email.focus();
		return false;
	}
	if(f.vzkaz.value == '') {
		alert("Napište Váš dotaz či vzkaz");
		f.vzkaz.focus();
		return false;
	}
	return true;
}

