// JavaScript Document
							var bigeye = Array();
							bigeye[0] = new Array("/img/ad/ad_06.jpg", "http://www.zyyy.org/info/infodetail.aspx?id=669&tid=1");
							bigeye[1] = new Array("/img/ad/ad_05.jpg", "http://www.zyyy.org/info/infodetail.aspx?id=646&tid=3");
							bigeye[2] = new Array("/img/ad/ad_01.jpg", "http://www.zyyy.org/services/programdetail.aspx?id=7");
							bigeye[3] = new Array("/img/ad/ad_21.jpg", "http://www.zyyy.org/info/infodetail.aspx?id=645&tid=1");

							var bigeye_i= 0;
							var BE_Obj = null;
							function SetBEC( _index )
							{
								var BigEyeButtionXHTML = "";
								if(_index>=0)
								{
									bigeye_i = _index;
									BEClearTimeout();
								}
								for(var BE_l = 1 ; BE_l <= bigeye.length ; BE_l++)
								{
									if(BE_l == bigeye_i + 1)
									{
									BigEyeButtionXHTML += "<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:SetBEC(" + (BE_l-1) + ");'>" + BE_l + "</div>";
									}
									else
									{
									BigEyeButtionXHTML += "<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:SetBEC(" + (BE_l-1) + ");'>" + BE_l + "</div>";
									}
								}
								//document.getElementById("bigeyeButton").innerHTML = BigEyeButtionXHTML;
								document.getElementById("bigeyeContent").innerHTML = "<a href='" + bigeye[bigeye_i][1] + "' target='_blank'><img src='" + bigeye[bigeye_i][0] + "' style=' border:2px #ccc solid;' onmouseover = 'javascript:BEClearTimeout();' onmouseout = 'javascript:BESetTimeout();' /></a>";
								bigeye_i++;
								if(bigeye_i == bigeye.length)
								{
									bigeye_i = 0;
								}

								BESetTimeout(); 
		
							}
							function BESetTimeout()
							{
								BE_Obj = setTimeout("SetBEC()",3000);
							}
							function BEClearTimeout()
							{
								clearTimeout(BE_Obj);
							}
							SetBEC();