$(function(){	




	



	/* Animate css wow */
	var wow = new WOW(
		{
			boxClass: 'wow',      // animated element css class (default is wow)
			animateClass: 'animated', // animation css class (default is animated)
			offset: 10,          // distance to the element when triggering the animation (default is 0)
			mobile: false       // trigger animations on mobile devices (true is default)
		}
	);
	wow.init();


	/* scrollify */
	$.scrollify({
		section: ".InnerGIGABYTEContent .scrollsection",
		sectionName: "",
		interstitialSection: ".main-content",
		easing: "easeInOutCubic",
		scrollSpeed: 1000,
		offset: 0,
		scrollbars: true,
		standardScrollElements: "",
		setHeights: 910,
		overflowScroll: false,
		updateHash: true,
		touchScroll: false,
		before: function () {

		},
		after: function () {
			$.scrollify({
				setHeights: false
			});

		},
		afterResize: function () {
			var nowwindowwidth = $(window).width();
			if (nowwindowwidth <= 1200) {
				$.scrollify.disable();
				$(".scrollsection").css('height', 'auto');
			}
		},

		afterRender: function () {

		}
	});


	var nowwindowwidthmob = $(window).width();
	if (nowwindowwidthmob <= 1200) {
		$.scrollify({
			setHeights: false,
		});
	}


	//btn
	$(".row1dw").hover(
		function () {
			$(".row1dw img").attr("src", "/FileUpload/Global/KeyFeature/2085/innergigabyteimages/download-color.png");
		}, function () {
			$(".row1dw img").attr("src", "/FileUpload/Global/KeyFeature/2085/innergigabyteimages/download-black.png");
		});




});


