<!--

function OW_openBrWindow(theUrl, winName, features){
secondWindow=window.open(theUrl, winName, features);
}

function CheckForNull (theForm) {

  if ((theForm.Firma.value == "") ||
     (theForm.Kontakt.value == "") ||
     (theForm.Zeme.value == "") ||
     (theForm.Ulice.value == "") ||
     (theForm.Mesto.value == "") ||
     (theForm.PSC.value == "") ||
     (theForm.Telefon.value == ""))
  {
    alert("Füllen Sie die Pflichtfelder bitte.");
    theForm.Kontakt.focus();
    return false;
  }
  return true; 
}

// Fancybox
		$(document).ready(function() {

		if ($('a[rel*=group]').length) {
			$("a[rel*=group]").fancybox({
				'titlePosition': 'over',
				'titleFormat': function(title, currentArray, currentIndex, currentOpts){
			return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' : &nbsp;  ' + title : '') + '</span>';
			}
		});
		}
		});

// Prolinani obrazku
$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});

//-->
