﻿// JScript 文件

function do_it(){
var anim = function(){
    n += 5;
    if(n >= 45){
        document.getElementById('anhuigov').style.marginTop = "0";
        window.clearInterval(t1);
    }else{
        document.getElementById('anhuigov').style.marginTop = "-"+(45 - n)+"px";
    }
},n=0;
var t1 = window.setInterval(anim,80);
setTimeout('CloseAdFloat();', 10000);
}
var floatCloseed = false;
function CloseAdFloat(){
if(floatCloseed)return;
var anim = function(){
n += 5;
//alert(n);
if(n >= 45){
document.getElementById('anhuigov').style.marginTop = "-45px";
//document.getElementById('alitalk_chk_show').style.display = "none";
floatCloseed = true;
window.clearInterval(t1);
}else{
document.getElementById('anhuigov').style.marginTop = "-"+ n +"px";
}
},n=0;
var t1 = window.setInterval(anim,80);
}