<style type="text/css">
*{margin:0;padding:0;}
body{height:2000px;}
.floatAd{width:124px;height:299px; text-align:center; position:fixed;margin-left:0;top:109px; _position:absolute; background:url(/bg_slide2_120_270.png) no-repeat;}
.floatAd a{display:block;}
.floatAd img{border:none;}
.floatAd .closeAd{width:50px; height:20px; display:block; cursor:pointer;margin:9px 0 0 auto;}
.flAd{left:0;}
.frAd{right:0;}
</style>
<div class="floatAd flAd">
<a href="#" target="_blank"><img src="#" width="120" height="270" alt="第1张图"></a>
<span class="closeAd"></span>
</div>
<div class="floatAd frAd">
<a href="#" target="_blank"><img src="#" width="120" height="270" alt="第2张图"></a>
<span class="closeAd"></span>
</div>
<script type="text/
javascript">
$(".closeAd").click(function(){
$(this).parent(".floatAd").hide();
})
/*for ie6*/
function scrollAd(obj) {
var obj = "." + obj;
var adTop = $(".floatAd").offset().top;
//alert(adTop);
$(window).scroll(function () {
$(".floatAd").css({
top : $(window).scrollTop() + adTop
})
})
}
$(function () {
//针对ie6,模拟position:fixed效果
if ($.browser.msie && parseInt($.browser.version) == 6) {
scrollAd("floatAd");
}
})
</script>