//-----------------------------------------------
// Dynamic Coloured Text 1.0                    |
//  Now supports IE, NS4, NS6                   |
// (c) 2006 Aleena                              |
// Web : http://aleena.bravehost.com            |
// E-mail :aleena.aneela@yahoo.co.uk            |
// Use freely as long as this message is intact |
//-----------------------------------------------

var Speeda = 300;
var tida = null;
var Trung = false;

//timer func's

function Scra()
{
shoCon();  //------------------------------Here Calls The Random Coloured Text JS
timerID = setTimeout("Scra()", Speeda);
Trung = true;
}

function Srta()
{
Sopa();
Scra();
}

function Sopa()
{
if(Trung)
clearTimeout(tida);
Trung = false;
}

Srta(); 
