$(document).ready(function(){

  $("#slides").slides({
	   generatePagination: true,
	   pagination: true,
     play: '3000'
  });
	
  $("a[rel='lightbox']").colorbox();
  $("area[rel='lightbox']").colorbox();
  
  $('a').filter(function() {
	  return this.hostname && this.hostname !== location.hostname;
	}).addClass("external");
	$(".js").each(function (i) {
    $(this).css({
	    'display': 'block'
    });
  })
  
  $(".non-js").each(function (i) {
    $(this).css({
	    'display': 'none'
    });
  })
  
  if ($('.form_check').length != 0) {
    $(".form_check").validate({
      invalidHandler: function(form, validator) {
        var errors = validator.numberOfInvalids();
        if (errors) {
          var message = 'Vyplňte prosím povinné položky';
          $("div.error").html(message);
          $("div.error").show();
        } else {
          $("div.error").hide();
        }
      }
    })
  }
	
  // datumy
  $("#terminod, #termindo").datepicker({
	format: "d.m.Y"
  });
});

