﻿// JavaScript Document
//自动刷新	
function getMaibarul(m,n)
{
	//教育导航被选
	$("mainbarul").getElementsByTagName("a")[m].className = "menued";
	if (n != -1)
	{
		var getchild = $("childbarul").getElementsByTagName("ul");
		for (var i=0; i<getchild.length; i++)
		{
			getchild[i].className = "closemenu";
			getchild[i].parentNode.className = "barclose";
		}
		getchild[n].className = "openmenu";
		getchild[n].parentNode.className = "baropen";
	}
}

//显示Entertainment页的滚动图片
function getScrollphoto()
{			
	//框架的宽度
	var focus_width=260;
	//框架的高度
	var focus_height=187;
	var swf_height = focus_height;
	var pics=imgUrl1+"|"+imgUrl2+"|"+imgUrl3+"|"+imgUrl4+"|"+imgUrl5+"|"+imgUrl6;
	//var links=imgLink1+"|"+imgLink2+"|"+imgLink3+"|"+imgLink4+"|"+imgLink5+"|"+imgLink6;//&links='+links+'
	document.write('<embed src="focus.swf" wmode="opaque" FlashVars="pics='+pics+'&borderwidth='+focus_width+'&borderheight='+focus_height+'" menu="false" bgcolor="#F0F0F0"  quality="high" width="'+focus_width+'" height="'+swf_height+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');  
	
}

//显示首页的滚动图片
function getScrollpictures()
{			
	//框架的宽度
	var focus_width=612;
	//框架的高度
	var focus_height=262;
	var swf_height = focus_height;
	var pics=imgUrl1+"|"+imgUrl2;
	var links=imgLink1+"|"+imgLink2;
	document.write('<embed src="focus.swf" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&borderwidth='+focus_width+'&borderheight='+focus_height+'" menu="false" bgcolor="#F0F0F0"  quality="high" width="'+focus_width+'" height="'+swf_height+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');  
	
}

//显示Environment页的滚动图片
function getScrollEnvironment()
{			
	//框架的宽度
	var focus_width=450;
	//框架的高度
	var focus_height=338;
	var swf_height = focus_height;
	var pics=imgUrl1+"|"+imgUrl2+"|"+imgUrl3+"|"+imgUrl4+"|"+imgUrl5+"|"+imgUrl6;
	//var links=imgLink1+"|"+imgLink2+"|"+imgLink3+"|"+imgLink4+"|"+imgLink5+"|"+imgLink6+"|"+imgLink7;//&links='+links+'
	document.write('<embed src="focus.swf" wmode="opaque" FlashVars="pics='+pics+'&borderwidth='+focus_width+'&borderheight='+focus_height+'" menu="false" bgcolor="#F0F0F0"  quality="high" width="'+focus_width+'" height="'+swf_height+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');  
	
}

//电视剧的内容
function getTabed(n)
{
	var getTag = $("allEntertain").getElementsByTagName("div");
	var getTd = $("allEntertain").getElementsByTagName("td");
	for (var i=0;i<getTag.length;i++)
	{
		getTag[i].style.display = "none";
		getTd[i].className = "";
	}
	getTag[n].style.display = "";
	getTd[n].className = "tabed";
}
	
		