
<SCRIPT>
var movestep=-1;movemount=0;
function moveby(){
Movediv.style.pixelLeft+=movestep;
if(movemount++>300) {
movestep=-movestep;
movemount=0;
}
setTimeout("moveby()",1);
}
var an=0;anstep=2;ht=null;
function blurit(){
BlurImgid.filters.Blur.Strength=an;
an=an+anstep;
if (an>20) {anstep=-anstep}
if (an<0) {anstep=-anstep}
ht=setTimeout("blurit()",1);
}
function hot(iname){
BlurImgid=document.all[iname];
blurit();
}
function clearblur(iname){
clearTimeout(ht);
BlurImgid.filters.Blur.Strength=0;
}
function doOver(){
theObj=window.event.srcElement;
if (theObj.tagName=="IMG") {
var iname=theObj.name;
if(iname!=""&&theObj.className=="blurimg") hot(iname);
}
}
function doOut(){
theObj=window.event.srcElement;
if (theObj.tagName=="IMG") {
var iname=theObj.name;
if(iname!=""&&theObj.className=="blurimg") clearblur(iname);
}
}
document.onmouseover=doOver;
document.onmouseout=doOut;
</SCRIPT>

