var fs_url = "http://www.hwei.net"
var fs_title = "高效灌溉  低碳发展"

// JScript 文件
function TopAd()
{
    var strTopAd="";
	
	//定义小图片内容
    var topSmallBanner="<div><a target=_blank href="+fs_url+"><img title="+fs_title+" src=\"images/ad1112.jpg\" border=0></a></div>";
	
	//判断在那些页面上显示大图变小图效果，非这些地址只显示小图（或FLASH）
    if (true)
    {
		//定义大图内容
        strTopAd="<div id=adimage style=\"width:777px\"><div id=adBig><a target=_blank href="+fs_url+"><img title="+fs_title+" src=\"images/ad1111.jpg\" border=0></A></div>"+
                    "<div id=adSmall style=\"display: none\">";
        //strTopAd+=  topFlash;     
		strTopAd+=  topSmallBanner;  
        strTopAd+=  "</div></div>";
    }
    else
    {
        //strTopAd+=topFlash;
		strTopAd+=  topSmallBanner;  
    }
    strTopAd+="<div style=\"height:5px; clear:both;overflow:hidden\"></div>";
    return strTopAd;
}
document.write(TopAd());
$(function(){
	//过两秒显示 showImage(); 内容
    setTimeout("showImage();",10000);
    //alert(location);
});
function showImage()
{
    $("#adBig").slideUp(1000,function(){$("#adSmall").slideDown(1000);});
}
 
