﻿


$(document).ready(function() {

    //左边广告条
    $(".adlimg").css({"top":($(window).height()-$(".adlimg").height())/2});
    $(".adlimg").prepend("<div align=\"right\" style=\"position:absolute;top:0px;right:0px;margin:2px;padding:1px;cursor:pointer;border:1px solid #000;line-height:100%;\" class=\"closeFloat\">×</div>");
    $(window).scroll(function(){ 
     $(".adlimg").css({"top":($(window).scrollTop()+($(window).height()-$(".adlimg").height())/2)}); 
    }) ;
    $(".closeFloat",$(".adlimg")).click(function() {
        $(this).hide();
        $(".adlimg").hide();
    });
    
    //右边广告条
    $(".adrimg").css({"top":($(window).height()-$(".adrimg").height())/2});
    $(".adrimg").prepend("<div align=\"right\" style=\"position:absolute;top:0px;right:0px;margin:2px;padding:1px;cursor:pointer;border:1px solid #000;line-height:100%;\" class=\"closeFloat\">×</div>");
    $(window).scroll(function(){ 
     $(".adrimg").css({"top":($(window).scrollTop()+($(window).height()-$(".adrimg").height())/2)}); 
    }) ;
    $(".closeFloat",$(".adrimg")).click(function() {
        $(this).hide();
        $(".adrimg").hide();
    });

    $("cigurl").html("<a href=\"http://gz.cig.com.cn/index.html\">北京新意互动广告有限公司广州分公司</a>");

});
