
////site-uploads/1001312/frontjs/speed.js
$(function () {
	/*Delete slider component in mobile*/
	if ($(window).width() < 700) {
		$('.slide').remove();
		$('.hidden-xs').remove();
		$('.desktop-only').remove();
 

	}
	let count = 0

 
	const userInteractionEvents = ["mouseover", "keydown", "touchmove", "touchstart"];
	userInteractionEvents.forEach(function (event) {
		window.addEventListener(event, triggerScriptLoader, {
			passive: true
		});
	});

	function triggerScriptLoader() {
		loadScripts();
		
		userInteractionEvents.forEach(function (event) {
			window.removeEventListener(event, triggerScriptLoader, {
				passive: true
			});
		});
	}
	function loadScripts() {
		if (count == 0 &&$(window).width() < 700) {
			$(`<iframe src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2Fnestech.ca%2F&tabs=timeline&width=340&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="340" height="500" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>`).insertAfter("#fb-root");
 			count++
		}

 
	}

});