// JScript 文件
function TopAd()
{
    var strTopAd="";
	var rand = Math.random();
	//定义小图片内容
    var topSmallBanner="<center><div style=\"margin-top:5px\">"+
		"	<object id=\"FlashID1\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"950\" height=\"80\"> "+
		"    <param name=\"movie\" value=\"http://www.96pk.com/static/swf/lj_950x80_site.swf?v=\""+rand+" />  "+
		"  <param name=\"quality\" value=\"high\" />"+
		"  <param name=\"wmode\" value=\"opaque\" />  "+
		"  <param name=\"swfversion\" value=\"6.0.65.0\" />"+
		"  <param name=\"allowScriptAccess\" value=\"always\" />"+
		"   <!--[if !IE]>-->" +
		" <object type=\"application/x-shockwave-flash\" data=\"http://www.96pk.com/static/swf/lj_950x80_site.swf?v=\""+rand+" width=\"950\" height=\"80\">" +
		"  <!--<![endif]-->"+
		"  <param name=\"allowScriptAccess\" value=\"always\" />"+
		" <param name=\"quality\" value=\"high\" /> " +
    	" <param name=\"wmode\" value=\"opaque\" /> " +
    	"<param name=\"swfversion\" value=\"6.0.65.0\" /> " +
		"  <!--[if !IE]>--> " +
 		"</object>"+
		"  <!--<![endif]--> " +
		"</object>" +
		"</div></center>";
		
	
	//判断在那些页面上显示大图变小图效果，非这些地址只显示小图（或FLASH）
	var is_show = false;
	//
	
	var cookie_value = jQuery.cookie("uchome_banner_show");	
	
	if(cookie_value){
		is_show = false;			
		
		var record_date = new Date(cookie_value);
		var now_date	= new Date();
		var test 		= new Date();
		test.setFullYear(now_date.getFullYear());
		test.setMonth(now_date.getMonth());
		test.setDate(now_date.getDate());
		test.setHours(12);
		
		if((test.getTime() - record_date.getTime()) < 12*60*60*1000){	//如果是同一天以内
			
			if(record_date < test && now_date > test ){	//上午显示了，下午就不显示	
				jQuery.cookie("uchome_banner_show",new Date(),{expires:5000,domain:'.96pk.com',path:'/'});
				is_show = true;
			}
		}else{
			jQuery.cookie("uchome_banner_show",new Date(),{expires:5000,domain:'.96pk.com',path:'/'});
			is_show = true;
		}
		
	}else{
		is_show	= true;
		
		//设置失效时间
		//如果是上午就失效时间为
		jQuery.cookie("uchome_banner_show",new Date(),{expires:5000,domain:'.96pk.com'});		//记录上次登录时间
	}
	
	is_show = false;
    if (is_show)
    {
		//定义大图内容
        strTopAd="<center><div id=adimage style=\"width:950px; margin-top:5px\">"+
                    "<div id=adBig>"+	
		"	<object id=\"FlashID\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"950\" height=\"400\"> "+
		"    <param name=\"movie\" value=\"http://www.96pk.com/static/swf/hysj_950x400.swf?v=\""+rand+" />  "+
		"  <param name=\"quality\" value=\"high\" />"+
		"  <param name=\"wmode\" value=\"opaque\" />  "+
		"  <param name=\"swfversion\" value=\"6.0.65.0\" />"+
		"  <param name=\"allowScriptAccess\" value=\"always\" />"+
			"   <!--[if !IE]>-->" +
		" <object type=\"application/x-shockwave-flash\" data=\"http://www.96pk.com/static/swf/hysj_950x400.swf\" width=\"950\" height=\"400\">" +
			"  <!--<![endif]-->"+
			"  <param name=\"allowScriptAccess\" value=\"always\" />"+
		" <param name=\"quality\" value=\"high\" /> " +
    	" <param name=\"wmode\" value=\"opaque\" /> " +
    	"<param name=\"swfversion\" value=\"6.0.65.0\" /> " +
		"  <!--[if !IE]>--> " +
		"</object>"+
		"  <!--<![endif]--> " +
		"</object>" +
		 "</div>"+
                    "<div id=adSmall style=\"display: none\">";
        //strTopAd+=  topFlash;     
		strTopAd+=  topSmallBanner;  
        strTopAd+=  "</div></div></center>";
    }
    else
    {
        //strTopAd+=topFlash;		
		strTopAd+=  topSmallBanner;  
    }
	
	
    strTopAd+="<div style=\"height:1px; clear:both;overflow:hidden\"></div>";
    return strTopAd;
}
//document.write(TopAd());

/**
jQuery(function(){
	//过2秒显示 showImage(); 内容
    setTimeout("showImage();",6000);
    //alert(location);
});
function showImage()
{
    jQuery("#adBig").slideUp(1000,function(){jQuery("#adSmall").slideDown(1000);});
}
**/

//首页滚图
function Marquee(){
		  this.ID=document.getElementById(arguments[0]);
		  this.Direction=arguments[1];
		  this.Step=arguments[2];
		  this.Width=arguments[3];
		  this.Height=arguments[4];
		  this.Timer=arguments[5];
		  this.WaitTime=arguments[6];
		  this.StopTime=arguments[7];
		  if(arguments[8]){this.ScrollStep=arguments[8];}else{this.ScrollStep=this.Direction>1?this.Width:this.Height;}
		  this.CTL=this.StartID=this.Stop=this.MouseOver=0;
		  this.ID.style.overflowX=this.ID.style.overflowY="hidden";
		  this.ID.noWrap=true;
		  this.ID.style.width=this.Width;
		  this.ID.style.height=this.Height;
		  this.ClientScroll=this.Direction>1?this.ID.scrollWidth:this.ID.scrollHeight;
		  this.ID.innerHTML+=this.ID.innerHTML;
		  this.Start(this,this.Timer,this.WaitTime,this.StopTime);
		}
		Marquee.prototype.Start=function(msobj,timer,waittime,stoptime){
		  	msobj.StartID=function(){msobj.Scroll();}
		  	msobj.Continue=function(){
				if(msobj.MouseOver==1){setTimeout(msobj.Continue,waittime);}
				else{clearInterval(msobj.TimerID); msobj.CTL=msobj.Stop=0; msobj.TimerID=setInterval(msobj.StartID,timer);}
			}
		  	msobj.Pause=function(){msobj.Stop=1; clearInterval(msobj.TimerID); setTimeout(msobj.Continue,waittime);}
		  	msobj.Begin=function(){
			msobj.TimerID=setInterval(msobj.StartID,timer);
			msobj.ID.onmouseover=function(){msobj.MouseOver=1; clearInterval(msobj.TimerID);}
			msobj.ID.onmouseout=function(){msobj.MouseOver=0; if(msobj.Stop==0){clearInterval(msobj.TimerID); msobj.TimerID=setInterval(msobj.StartID,timer);}}
			}
		  setTimeout(msobj.Begin,stoptime);
		 }
		Marquee.prototype.Scroll=function(){
		  switch(this.Direction){
			case 0:
			  this.CTL+=this.Step;
			  if(this.CTL>=this.ScrollStep&&this.WaitTime>0){this.ID.scrollTop+=this.ScrollStep+this.Step-this.CTL; this.Pause(); return;}
			  else{if(this.ID.scrollTop>=this.ClientScroll) this.ID.scrollTop-=this.ClientScroll; this.ID.scrollTop+=this.Step;}
			  break;
			case 1:
			  this.CTL+=this.Step;
			  if(this.CTL>=this.ScrollStep&&this.WaitTime>0){this.ID.scrollTop-=this.ScrollStep+this.Step-this.CTL; this.Pause(); return;}
			  else{if(this.ID.scrollTop<=0) this.ID.scrollTop+=this.ClientScroll; this.ID.scrollTop-=this.Step;}
			  break;
			case 2:
			  this.CTL+=this.Step;
			  if(this.CTL>=this.ScrollStep&&this.WaitTime>0){this.ID.scrollLeft+=this.ScrollStep+this.Step-this.CTL; this.Pause(); return;}
			  else{if(this.ID.scrollLeft>=this.ClientScroll) this.ID.scrollLeft-=this.ClientScroll; this.ID.scrollLeft+=this.Step;}
			  break;
			case 3:
			  this.CTL+=this.Step;
			  if(this.CTL>=this.ScrollStep&&this.WaitTime>0){this.ID.scrollLeft-=this.ScrollStep+this.Step-this.CTL; this.Pause(); return;}
			  else{if(this.ID.scrollLeft<=0) this.ID.scrollLeft+=this.ClientScroll; this.ID.scrollLeft-=this.Step;}
			  break;
			}
		  }
