/*
Glowing Text Script-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/

function glowit(which){
if (document.all.glowtext[which].filters[0].strength==3)
document.all.glowtext[which].filters[0].strength=2;
else
document.all.glowtext[which].filters[0].strength=3;
}

function glowit2(which){
if (document.all.glowtext[0].filters[0].strength==3)
document.all.glowtext[0].filters[0].strength=2;
else
document.all.glowtext[0].filters[0].strength=3;
}

function startglowing(){
if (document.all.glowtext&&glowtext.length){
for (b=0;b<glowtext.length;b++)
eval('setInterval("glowit('+b+')",600)');
}
else if (glowtext);
setInterval("glowit2(0)",600);
}

if (document.all)
window.onload=startglowing;

