$(document).ready(function() {

	//reload window on resize script
	//$(window).resize(function(){location.reload();});

	//bootstrap footer scripts
	if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
		var msViewportStyle = document.createElement('style')
		msViewportStyle.appendChild(
			document.createTextNode(
				'@-ms-viewport{width:auto!important}'
			)
		)
		document.querySelector('head').appendChild(msViewportStyle)
	}

	//clickable bar
	$(".clickable").focusin(function() {
		$('.btn-search').addClass("btn-open");
	});
	$(".clickable").focusout(function() {
		$('.btn-search').removeClass("btn-open");
	});

	//swip on carousel
	$("#carousel-webfrog").swiperight(function() {  
		$("#carousel-webfrog").carousel('prev');  
	});  
	$("#carousel-webfrog").swipeleft(function() {  
		$("#carousel-webfrog").carousel('next');  
	});  

	
});