/* AUTHOR: mathieu simons */
/* Creation date: 1/05/2002 */
 document.write("<style> #glowtext{filter:glow(col"
 +"or=#000000,strength=8); width:100%;}--></st"
 +"yle> ");
 // to do the glow:
 // <span id="glowtext"><FONT SIZE=5 color="#000000"><b>Welcome to - Always 4 YOU!!</b></FONT></span>
 
function glowit(which){
if (document.all.glowtext[which].filters[0].strength==8)
document.all.glowtext[which].filters[0].strength=0;
else
document.all.glowtext[which].filters[0].strength=8;
}
function glowit2(which){
if (document.all.glowtext.filters[0].strength==8)
document.all.glowtext.filters[0].strength=0;
else
document.all.glowtext.filters[0].strength=8;
}
function startglowing(){
if (document.all.glowtext&&glowtext.length){
for (i=0;i<glowtext.length;i++)
eval('setInterval("glowit('+i+')",3550)');
}
else if (glowtext);
setInterval("glowit2(0)",3550);
}
if (document.all)
window.onload=startglowing;