//      ^-this is the text that is shown
<!--
//can be modified from here
var from = 1;                    //the animation start value
var to = 5;			 //the animation end value
var delay = 180;			 //the animation speed
var glowColor = "Purple";          //the color of the text
//no more editing
var i = to;
var j = 0;
//textPulseDown();
function textPulseUp()
{
if (!document.all)
return
if (i < to)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i++;
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
if (i = to)
{
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
}
//Copyright (c) 2001 Coyotee Labs Romania (www.coyoteelabs.go.ro)
//This script can be used freely as long as all copyright messages are
//intact. Visit WWW.COYOTEELABS.GO.RO for more scripts
function textPulseDown()
{
if (!document.all)
return
if (i > from)
{
theText.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
i--;
theTimeout = setTimeout('textPulseDown()',delay);
return 0;
}
if (i = from)
{
theTimeout = setTimeout('textPulseUp()',delay);
return 0;
}
}
//-->
//onload=fadeInit;


