﻿// JScript 文件
function TopAd()
{
    var strTopAd="";
	
	//定义小图片内容
    var topSmallBanner = "<div type=text/css style=text-align:center;><a href=\"http://www.hxrcsc.com/Html/Info/2670.html\" target=_blank><img src=\"images/topad/top_090901_s.jpg\" style=\"width:958px;\" /></a></div>";
	
	//判断在那些页面上显示大图变小图效果，非这些地址只显示小图（或FLASH）
    if (location == "http://www.lanrentuku.com" || location == "http://lanrentuku.com" || location == "http://bbs.lanrentuku.com/" || true)
    {
		//定义大图内容
        strTopAd = "<div id=adimage style=\"left\">" +
                    "<div id=adBig><a href=\"http://www.hxrcsc.com/Html/Info/2670.html\" target=_blank><img title=2012 新春首场 湖南 长沙人才 大型人才 招聘会 " +
                    "src=\"images/topad/topad.jpg\" " +
                    "border=0 style=\"width:100%;\"></a><img onclick=\"showImage();\" src=\"images/topad/cls_77x31.gif\"></img></div>" +
                    "<div id=adSmall style=\"display: none\">";
        //strTopAd+=  topFlash;     
		strTopAd+=  topSmallBanner;  
        strTopAd+=  "</div></div>";
    }
    else
    {
        //strTopAd+=topFlash;
		strTopAd+=  topSmallBanner;  
    }
    strTopAd+="<div style=\"height:7px; clear:both;overflow:hidden\"></div>";
    return strTopAd;
}
document.write(TopAd());
//$(function(){
//	//过两秒显示 showImage(); 内容
//    setTimeout("showImage();",200000000000);
//    //alert(location);
//});
function showImage()
{
    $("#adBig").slideUp(1000,function(){$("#adSmall").slideDown(1000);});
}


