﻿$.ajaxSetup({
    cache: false //关闭AJAX相应的缓存
});
$(function() {
    $('#productCategory').accordion({ header: 'h3',autoHeight:false });
    $('.GQXX').jCarouselLite({
        speed: 600,
        auto: 5000,
        vertical: true,
        visible: 8
    });

    //    // 合作伙伴
    setTimeout(function() {
        $('#partner').load('/htmlContent/partner.html', function() {
            $(this).jCarouselLite({
                speed: 2000,
                auto: 3000,
                visible: 3,
                scroll: 1
            });
        });
       
        $('#friendshipLink').load('/htmlContent/friendshipLink.html');
    }, 5000);

    //右下角广告
    setTimeout(function() {
        $.messager.lays(420, 220);
        $.messager.show('Message Alert', $('.messagePOP').html(), 10000);
    }, 2000);

    
});