
 /*
 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.filters[0].strength==3)
 document.all.glowtext.filters[0].strength=2
 else
 document.all.glowtext.filters[0].strength=3
 }
 
 function startglowing(){
 if (document.all.glowtext&&glowtext.length){
 for (i=0;i<glowtext.length;i++)
 eval('setInterval("glowit('+i+')",270)')
 }
 else if (glowtext)
 setInterval("glowit2(0)",320)
 }
 
 if (document.all)
 window.onload=startglowing



 /*
 Gradual-Highlight Image 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 high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",60)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=80
}

function low2(which2,lowto){
clearInterval(highlighting)
which2.filters.alpha.opacity=lowto
}

function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=3
else if (window.highlighting)
clearInterval(highlighting)
}


 function low2slow(which2,l2){
theobject=which2
thelevel=l2
which2.filters.alpha.opacity=thelevel
 clearInterval(highlighting)
 highlighting=setInterval("lowlightit(theobject)",20)
 }

 function lowlightit(cur2){
 if (cur2.filters.alpha.opacity>60)
 cur2.filters.alpha.opacity-=5
 else if (window.highlighting)
 clearInterval(highlighting)
 }
 