<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">jQuery(document).ready(function(s){

	jQuery('.single-left-content iframe').wrap('&lt;div class="iframe-wrap"/&gt;');
	
	// Open external links in new tab
	jQuery('a[href^=http]').click(function () {
	  var a = new RegExp('/' + window.location.host + '/');
	  if (!a.test(this.href)) {
		window.open(this.href);
		return false;
	  }
	});
	
	/* jQuery accordion */
	jQuery('.jquery_accordion_title').click(function() {
		jQuery(this).closest('.jquery_accordion_item').toggleClass('active').siblings().removeClass('active').find('.jquery_accordion_content').slideUp(400);
		jQuery(this).closest('.jquery_accordion_item').find('.jquery_accordion_content').slideToggle(400);
		return false;
	});
	
	/*Fix popup youtube-channel*/
	jQuery('.ytc_thumb').magnificPopupAU({
		type: 'iframe',
		mainClass: 'mfp-fade',
		removalDelay: 400,
		preloader: false,
		iframe: {
			patterns: {
				youtube: {
					index: 'youtube.com',
					id: 'v=',
					src: 'https://www.youtube.com/embed/%id%?rel=0&amp;autoplay=1'
				}
			}
		},
	});
	
	/*jQuery('#header-menu .menu-header-menu-container').meanmenu({
		meanScreenWidth:"980",
		meanMenuContainer:'.header-section'
	});



	//Social Share
	if (jQuery('a.share').length) {
		jQuery('a.share').on('click', function (e) {
			e.preventDefault();
			jQuery(this).toggleClass('active');
			jQuery('.share-print').toggleClass('active');
		})
	}*/


	/* Meta Single */
	/*let single_post_h2 = jQuery('body.single #left-content h2:first-of-type');

	if(single_post_h2.length) {
	  jQuery('body.single #left-content .single-meta-wrap').insertAfter(single_post_h2);
	} else {
	  jQuery('body.single #left-content .single-meta-wrap').prependTo('#left-content &gt; .ct-inner-content');
	}*/
	/* Meta Single */

	/*jQuery( "#left-content p iframe" ).wrap( "&lt;div class='youtube-wrap'&gt;&lt;/div&gt;" );*/
});</pre></body></html>