File "functions-20260907115859-20260907131522.js"

Full Path: /home/chawlag2/public_html/js2/functions-20260907115859-20260907131522.js
File size: 603 bytes
MIME-type: text/plain
Charset: utf-8

(function ($) {
	
		var slider = $('.bxslider').bxSlider({
  mode: 'horizontal'
});

$('#reload-slider').click(function(e){
  e.preventDefault();
  slider.reloadSlider({
    mode: 'fade',
    auto: true,
    pause: 1000,
    speed: 500
  });
});

$(window).scroll(function(){
		if ($(this).scrollTop() > 100) {
			$('.scrollup').fadeIn();
			} else {
				$('.scrollup').fadeOut();
			}
		});
		$('.scrollup').click(function(){
			$("html, body").animate({ scrollTop: 0 }, 1000);
				return false;
		});
		
		wow = new WOW(
	 {
	
		}	) 
		.init();
		
})(jQuery);