// JScript 文件
function TopAd()
{
    var strTopAd="";
	
	//定义小图片内容
    var topSmallBanner="<div><a href=\"http://www.lanrentuku.com/\" target=_blank><img src=\"images/top_090901_s.gif\" /></a></div>";
	
	//判断在那些页面上显示大图变小图效果，非这些地址只显示小图（或FLASH）
    if (location == "http://www.lanrentuku.com" || location == "http://lanrentuku.com" || location == "http://bbs.lanrentuku.com/" || true)
    {
		//定义大图内容
        strTopAd="<div id=adimage style=\"width:100%; \">"+
                    "<div id=adBig style=\"margin:0 auto;height:600px;text-align:center;background:#b80000 url(images/ttop.jpg) no-repeat center top;\">&nbsp;</div>"+
                    "</div>";
    }
    else
    {
        //strTopAd+=topFlash;
		strTopAd+=  topSmallBanner;  
    }
    return strTopAd;
}
document.write(TopAd());
$(function(){
	//过两秒显示 showImage(); 内容
    setTimeout("showImage();",2000);
    //alert(location);
});
function showImage()
{
    $("#adBig").slideUp(1000,function(){$("#adSmall").slideDown(1000);});
}


