﻿$(function(){
 
	resize();
	$(window).resize(function(event) {
		resize();
	});

	$(".ul_tag li").click(function () {
	    $(this).addClass("on").siblings().removeClass("on");

	})
	$(".wow_list .wow").each(function (e) {
	    $(this).attr("data-wow-delay", ($(this).index() / 10) + "s");
	})
	var owl_yg = $(".yg_owl .owl").owlCarousel({
	    items: 4,
	    responsive: {
	        0: { items: 2, margin: 10, },
	        1000:{items:4, margin: 20,}
	    },
	    loop: true, dots: false
	});

	$(".zp_list .list .tit label").click(function () {
	    $(this).parents("li").toggleClass("on");
	    $(this).parents("li").find(".box").stop().slideToggle()

	})

	$(".yg_owl").find(".next").click(function () {
	    owl_yg.trigger("next.owl.carousel")
	})
	$(".yg_owl").find(".prev").click(function () {
	    owl_yg.trigger("prev.owl.carousel")
	})

	$(".owl").each(function () {
	    if ($(this).find(".item").length > 1) {
	        var owl = $(this).find(".owlCarousel").owlCarousel({ items: 1, loop: true, autoplay: true });
	        owl.on('changed.owl.carousel', function (event) {
	            owl.find(".animated").each(function () { $(this).removeClass($(this).attr("data-animation")); })
	            owl.find(".owl-item").eq(event.item.index).find(".animated").each(function () { $(this).addClass($(this).attr("data-animation")); });
	        })
	 
	        $(this).find(".owl_cur").find(".next").click(function () {
	            owl.trigger("next.owl.carousel")
	        })
	        $(this).find(".owl_cur").find(".prev").click(function () {
	            owl.trigger("prev.owl.carousel")
	        })
	    }
	})
	$(".banner .owl-item").eq(2).find(".animated").each(function () {
	    $(this).addClass($(this).attr("data-animation"));
	})
	$(window).scroll(function () {
	    $(".animated").each(function () {
	        if ($(this).offset().top - $(window).scrollTop() > $(window).height() - 80)
	            $(this).removeClass($(this).attr("data-animation"));
	        else
	            $(this).addClass($(this).attr("data-animation"));
	    })

	    if ($(window).scrollTop() > 30) {
	        $(".header").addClass("fixed");
	    }
	    else { $(".header").removeClass("fixed"); }
	})


	$(".menu_wrap").click(function () { $(".header").toggleClass("h_menu") });


	$(window).load(function () {
        if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))) {
            if ($(window).width()>1024) new WOW().init();
	    }
	})


});

/*main*/
//

function font() {


}


/*call*/
//
function resize(){
	var ht=$(window).height();
	 
} 