﻿$(function () {
    $(window).scroll(function () {
        //获取工作区居顶位置距离
        $(".RTLayer").css("top", 5 + document.documentElement.scrollTop);
    });
    $(window).scroll(function () {
        //获取工作区居顶位置距离
        $(".LTLayer").css("top", 5 + document.documentElement.scrollTop);
    });
});
