
tcol = new Array()
tcol[0]="FFFFFF"
tcol[1]="D5E9FF"
tcol[2]="9DCBFF"
tcol[3]="8DC3FF"
tcol[4]="69B0FF"
tcol[5]="59A7FF"
tcol[6]="439CFF"
tcol[7]="318CFF"
tcol[8]="318CFF"
tcol[9]="439CFF"
tcol[10]="59A7FF"
tcol[11]="69B0FF"
tcol[12]="8DC3FF"
tcol[13]="9DCBFF"
tcol[14]="D5E9FF"
tcol[15]="FFFFFF"


ti_col=0
tdoani=1
var ttimer
var tthislink

function tanimatelink() {
//	if (document.all) {
		if (tdoani==1) {
			if (ti_col<=tcol.length-1) {
				tthislink.color=tcol[ti_col]
				ti_col++
				ttimer=setTimeout("tanimatelink()",100)
    		}
			else {
				ti_col=0
				ttimer=setTimeout("tanimatelink()",100)
			}
		}
		else {
			clearTimeout(ttimer)
		}
//	}
}

function front_stopanimation() {
	clearTimeout(ttimer)
	tthislink.color="white"
	tdoani=0
}	

function front_startanimation(thelink) {
	clearTimeout(ttimer)
	tthislink=eval("document.all."+thelink+".style")
	tdoani=1
	tanimatelink()
}	
