
$().ready(function () {
    //product-1
    $(".scrollP").click(function(event){
        event.preventDefault();
        $('html,body').animate({scrollTop:$(this.hash).offset().top-100},1000);
    });

    //product-2 下拉查看更多
    $('.pro_2_sorting_box').find('.moreBtn').click(function () {
       if($(this).text() == "下拉查看更多"){
           $(this).prev().css({"maxHeight":"inherit"});
           $(this).html("<i class=\"fa fa-angle-up\"></i>收起");
       }else{
           $(this).prev().css({"maxHeight":"175px"});
           $(this).html("<i class=\"fa fa-angle-down\"></i>下拉查看更多");
       }
    });

    //详情
    $(".scrollPro").click(function(event){
        event.preventDefault();
        $('html,body').animate({scrollTop:$(this.hash).offset().top-100},1000);
        $('.pro_detailed_description .btn_box').find('a').removeClass('active');
        $(this).addClass('active');
    });


});


function pageScroll(){
    window.scrollBy(0,-100);
    scrolldelay = setTimeout('pageScroll()',0);
    var sTop=document.documentElement.scrollTop+document.body.scrollTop;
    if(sTop==0) clearTimeout(scrolldelay);
}