// source --> https://www.hivslovensko.sk/wp-content/plugins/ova-collections/assets/js/frontend/ovacoll-script.js?ver=7.0 
(function( $ ){
	'use strict';

	$(document).ready(function(){
      
      /***** Pretty Photo *****/
      if($().prettyPhoto) {
         $(".fullscreen a[rel^='prettyPhoto']").prettyPhoto();
      }

		// init Masonry Archive Collection after all images have loaded
      if($().imagesLoaded) {
         var $grid = $('.archive_collection .content_archive_coll').imagesLoaded( function() {
            $grid.masonry({
               itemSelector: '.items_archive_coll',
               columnWidth: '.items_archive_coll',
               gutter: 30,
               percentPosition: true
            });
         });
      }

      /* Select2*/
      if ($('.archive_collection .postform').length > 0) {
         $('.archive_collection .postform').select2();
      };

      /* Single Toggle*/
      $(".single_collection .card button").click(function(){
         $(this).toggleClass("collapsed");
         $(this).next().slideToggle("slow");
      });  

   });

})(jQuery);
// source --> https://www.hivslovensko.sk/wp-content/plugins/ova-dep/assets/js/frontend/ovadep-script.js?ver=7.0 
(function( $ ){
	'use strict';

	$(document).ready(function(){
		/* Select2*/
	    if ($('.ovadep_cat').length > 0) {
	      $('.ovadep_cat').select2();
	    };
    });

})(jQuery);