<script type="text/javascript" language="javascript">
function lxfEndtime(){
$t=$('#t').html();
if($t!=0){
$('#t').html($t-1);
$i=setTimeout("lxfEndtime()",1000);
}else{
$('.box').hide();
$('#t').html(6);
$('.ad_time').css({'width':'600px','height':'400px'});
clearTimeout($i);
}
};
$(document).ready(function(){
$('.close').click(function(){
$('.box').hide();
$('#t').html(6);
$('.ad_time').css({'width':'600px','height':'400px'});
clearTimeout($i);
});
//开始显示
$('.box').show();
$('.ad_time').animate({width:110,height:18},'slow');
lxfEndtime();
});
</script>