// JavaScript Document
	var bigeye2 = Array();

	bigeye2[0] = new Array("/img/ad/ad_s_01.jpg", "http://www.zyyy.org/info/infodetail.aspx?id=644&tid=3");
	bigeye2[1] = new Array("/img/ad/ad_s_02.jpg", "http://www.zyyy.org/info/infodetail.aspx?id=505&tid=3#3");
	var bigeye2_i= 0;
	var BE_Obj2 = null;
	function SetBEC2( _index )
	{
		var BigEyeButtionXHTML2 = "";
		if(_index>=0)
		{
			bigeye2_i = _index;
			BEClearTimeout2();
		}
		for(var BE_l = 1 ; BE_l <= bigeye2.length ; BE_l++)
		{
			if(BE_l == bigeye2_i + 1)
			{
			BigEyeButtionXHTML2 += "<div style='background-color:#B8DB7C;float:left;cursor:pointer;width:16px;height:12px; font-family:Arial;border:1px #093 solid;font-weight:bold;padding:2px 0px;margin-right:2px;font-size:12px; text-align:center;color:#fff;' onclick='javascript:SetBEC2(" + (BE_l-1) + ");'>" + BE_l + "</div>";
			}
			else
			{
			BigEyeButtionXHTML2 += "<div style='background-color:#fff;float:left;cursor:pointer;width:16px;height:12px; font-family:Arial;border:1px #093 solid;font-weight:bold;padding:2px 0px;margin-right:3px;font-size:12px;text-align:center;color:#000;' onclick='javascript:SetBEC2(" + (BE_l-1) + ");'>" + BE_l + "</div>";
			}
		}
		//document.getElementById("bigeyeButton").innerHTML = BigEyeButtionXHTML2;
		document.getElementById("bigeyeContent2").innerHTML = "<a href='" + bigeye2[bigeye2_i][1] + "' target='_blank'><img src='" + bigeye2[bigeye2_i][0] + "' style=' border:2px #ccc solid;' onmouseover = 'javascript:BEClearTimeout2();' onmouseout = 'javascript:BESetTimeout2();' /></a>";
		bigeye2_i++;
		if(bigeye2_i == bigeye2.length)
		{
			bigeye2_i = 0;
		}

		BESetTimeout2(); 
		
	}
	function BESetTimeout2()
	{
		BE_Obj2 = setTimeout("SetBEC2()",3000);
	}
	function BEClearTimeout2()
	{
		clearTimeout(BE_Obj2);
	}
	SetBEC2();