var a1Top;
var a1Obj;
function inix(){
//获取a1Top的高度
a1Obj=document.getElementById("ad1");
if(a1Obj.currentStyle){
a1Top=parseInt(a1Obj.currentStyle.top);
}
else{ //
www.jb200.com
a1Top=parseInt(a1Obj.getComputedStyle(a1obj,null).top);
}
}
function move(){
a1Obj.style.top=a1Top+parseInt(document.documentElement.scrollTop)+"px";
}
window.onload=inix;
window.onscroll=move;