$(function () {

    var wow = new WOW({
        offset: 0,
        mobile: false
    });
    wow.init();

    $('.dropdown').hover(function () {
        $(this).addClass('open');
    }, function () {
        $(this).removeClass('open');
    });

    $('.hform').find('form').submit(function () {
        var val = $(this).find('input').val();
        if (!val) {
            alert('请输入关键字');
            return false
        }
    });

    $('.web-column').slide({
        titCell: 'h3',
        targetCell: 'ul',
        defaultIndex: 0,
        effect: 'slideDown',
        delayTime: 300,
        trigger: 'click'
    }).find('.sub').hover(function () {
        $(this).addClass('open').siblings().removeClass('open');
    }, function () {
        $(this).removeClass('open');
    });

    
});
