/*ÐÂÎÅÀ¸Ä¿²¥·Å*/
var scrollNewsCt=1;
var pauseTime=5*1000;
var timer0;
function hideAllClips() {
	for (i=1; i<9; i++){
		var allClips="newsbox"+i;
		var clipNum="clipNum"+i;
		var imagee="image"+i;
		var informationn="information"+i;
		document.getElementById(allClips).style.display="none";
		document.getElementById(imagee).style.display="none";
		document.getElementById(clipNum).style.backgroundColor="#FFFFe0";	
		document.getElementById(clipNum).style.color="#000000";	
		document.getElementById(informationn).style.display="none";
		}
	}
	
function clip_Switch(n) {
	var curClip="newsbox"+n;
	var curClipNum="clipNum"+n;
	var image="image"+n;
	var information="information"+n;
	hideAllClips();
	document.getElementById(curClip).style.display="block";
	document.getElementById(curClipNum).style.backgroundColor="yellow";	
	document.getElementById(curClipNum).style.color="#CC3300";	
	document.getElementById(information).style.display="block";
	document.getElementById(image).filters.item(0).apply();	
	document.getElementById(image).style.display="block"
	document.getElementById(image).filters.item(0).play();	
	scrollNewsCt=n;
	
	}
	
function fwdScroll() {
	stopScroll();
	clip_Switch(scrollNewsCt);
	scrollNewsCt+=1;
	if (scrollNewsCt==9) {
		scrollNewsCt=1;
		}
		timer0=setTimeout("fwdScroll()",pauseTime);
	}
	
function stopScroll() {
	clearTimeout(timer0);
	}
-->
