﻿// JScript 文件
function TopAd()
{
    var strTopAd="";
	
	//定义小图片内容
    var topSmallBanner="<a href=\"http://www.4008800016.com/?list-42.html\" target=_blank><img border=0 src=\"images/top_111128_s.gif\" /></a>";
	
	//判断在那些页面上显示大图变小图效果，非这些地址只显示小图（或FLASH）
    if (location == "http://www.4008800016.com" || location == "http://4008800016.com" || location == "http://www.4008800016.cn" || location == "http://4008800016.cn" || location == "http://bbs.4008800016.com/" || true)
    {
		//定义大图内容

            strTopAd+="<div id=adimage style=\"width:950px\">";
            strTopAd+="<div id=adSmall>"+topSmallBanner+"</div>";
            strTopAd+="<div id=adBig style=\"display:none;\"><a href=\"http://www.4008800016.com/?list-42.html\" " + 
                    "target=_blank><img border=0 title=2011年秋冬感恩回馈季 "+
                    "src=\"images/top_111128_b.jpg\" border=0></A></div></div>";
    }
    else
    {
        //strTopAd+=topFlash;
		strTopAd+=  topSmallBanner;  
    }
    return strTopAd;
}
document.write(TopAd());
$(document).ready(function(){
	//过4秒显示 showImage(); 内容
    setTimeout("showImage();",1000);
    setTimeout("hideImage();",5000);
    //alert(location);
   $("#adimage").hover(function(){showImage();setTimeout("hideImage();",5000);});

});

function hideImage()
{
   $("#adBig").slideUp(1000);
   
}
function showImage()
{
   $("#adBig").slideDown(1000);  
}
