function changecontent2(){
	if (index2>=fcontent2.length)
		index2=0
	
	if (DOM2){
		document.getElementById("fscroller2").style.color="rgb(255,255,255)"
		document.getElementById("fscroller2").innerHTML=fcontent2[index2]
		colorfade2()
	}
	else if (ie4)
		document.all.fscroller2.innerHTML=fcontent2[index2]
	else if (ns4){
		document.fscrollerns2.document.fscrollerns_sub2.document.write(fcontent2[index2])
		document.fscrollerns2.document.fscrollerns_sub2.document.close()
	}
		index2++
		setTimeout("changecontent2()",delay2+faderdelay2)
}

function colorfade2() {	         	
	if(frame2>0) {	
		hex2-=12; 
		document.getElementById("fscroller2").style.color="rgb("+hex2+","+hex2+","+hex2+")"; 
		frame2--;
		setTimeout("colorfade2()",20);	
	}
	else{
		document.getElementById("fscroller2").style.color="rgb(0,0,0)";
		frame2=20;
		hex2=255
	}   
}

function changecontent(){
	changecontent2()
}
