$(document).ready(function(){
  $("a[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'
    });
  })
  $('#top #menu ul li').hover(
    function () {
      $(this).find('ul').show(400);
    },
    function () {
      $(this).find('ul').stop(true, true).hide(400);
  });
  if ($('.slider').length != 0) {
		$('.slider').loopedSlider({
			container: ".slider-container",
			slides: ".slider-slides",
			pagination: "slider-pagination",
			containerClick: false,
			autoStart: 3000,
			slidespeed: 3000,
			fadespeed: 1000,
			addPagination: false
		});
	}
  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();
        }
      }
    })
  }
});
