// JScript 文件
function TopAd()
{
    var strTopAd="";
	var topFlash="<a href='http://www.yhandbags.com/promation.php'><img src=\"pro00.jpg\" border=\"0\" /></a>";
    var topSmallBanner="";
	if (location == "http://www.yhandbags.com/" || location == "http://www.yhandbags.com" || location == "www.yhandbags.com" || location == "http://www.yhandbags.com/index.php")
    {
        strTopAd="<div id=adimage>"+
                    "<div id=adBig style=\"width:700px;margin:0 15%;\"><a href=\"http://www.yhandbags.com/promation.php\" " + 
                    "target=_blank><img "+
                    "src=\"pro0.jpg\" " +
                    "border=0></A></div>"+
                    "<div id=adSmall style=\"display: none;margin-left:15px;\">";
        strTopAd+=  topFlash;     
        strTopAd+=  "</div></div>";
    }
    else
    {
        strTopAd+=topFlash;
	}
    strTopAd+="<div style=\"height:5px; clear:both;overflow:hidden\"></div>";
    return strTopAd;
}
document.write(TopAd());
$(function(){
    setTimeout("showImage();",2000);
    //alert(location);
});
function showImage()
{
    $("#adBig").slideUp(2000,function(){$("#adSmall").slideDown(2000);});
}
