function flash()	{
	var t=setTimeout("one();",100);
	}

function one()	{
	document.getElementById("chara").style.color="red";
	var t=setTimeout("onea();",100);
	}
	
function onea()	{
	document.getElementById("chara").style.color="black";	
	var t=setTimeout("two();",100);
	}

function two()	{
	document.getElementById("charb").style.color="orange";
	var t=setTimeout("twoa();",100);
	}

function twoa()	{
	document.getElementById("charb").style.color="black";	
	var t=setTimeout("three();",100);
	}	
	
function three()	{
	document.getElementById("charc").style.color="yellow";	
	var t=setTimeout("threea();",100);		
		}
	
function threea()	{
	document.getElementById("charc").style.color="black";	
	var t=setTimeout("four();",100);
	}	
		
function four()	{
	document.getElementById("chard").style.color="green";	
	var t=setTimeout("foura();",100);		
		}		
		
function foura()	{
	document.getElementById("chard").style.color="black";	
	var t=setTimeout("five();",100);
	}	
	
function five()	{
	document.getElementById("chare").style.color="blue";	
	var t=setTimeout("fivea();",100);		
		}			
	
function fivea()	{
	document.getElementById("chare").style.color="black";	
	var t=setTimeout("six();",100);
	}	
	
function six()	{
	document.getElementById("charf").style.color="#4B0082";	
	var t=setTimeout("sixa();",100);
		}
	
function sixa()	{
	document.getElementById("charf").style.color="black";	
	var t=setTimeout("seven();",100);
	}	

function seven()	{
	document.getElementById("charg").style.color="#800080";	
	var t=setTimeout("sevena();",100);
	}

function sevena()	{
	document.getElementById("charg").style.color="black";	
	var t=setTimeout("eight();",100);
	}	

function eight()	{
	document.getElementById("charh").style.color="#800080";	
	var t=setTimeout("eighta();",100);
	}

function eighta()	{
	document.getElementById("charh").style.color="black";	
	var t=setTimeout("nine();",100);
	}	

function nine()	{
	document.getElementById("chari").style.color="#800080";	
	var t=setTimeout("ninea();",100);
	}

function ninea()	{
	document.getElementById("chari").style.color="black";	
	var t=setTimeout("ten();",100);
	}		

function ten()	{
	document.getElementById("worda").style.fontSize="36px";
	var t=setTimeout("tena();",400);	
		}
		
function tena()	{
	document.getElementById("worda").style.fontSize="48px";
	var t=setTimeout("tenb();",400);	
			}
		
function tenb()	{
	document.getElementById("worda").style.fontSize="24px";
	var t=setTimeout("eleven();",500);	
			}
						
function eleven()	{
	document.getElementById("worda").style.fontFamily="Footlight MT Light";
	var t=setTimeout("elevena();",500);	
		}
		
function elevena()	{
	document.getElementById("worda").style.fontFamily="Harrington";
	var t=setTimeout("elevenb();",500);	
		}

function elevenb()	{
	document.getElementById("worda").style.fontFamily="Magneto";
	var t=setTimeout("elevenc();",500);	
		}
		
function elevenc()	{
	document.getElementById("worda").style.fontFamily="Rockwell Extra Bold, Arial";		
	}
		
