First of all you have some syntax errors. Wherever you have:
Code:
onMouseOut="window.status='2001 Pop's Run Photo Album'; return true"
it should be:
Code:
onMouseOut="window.status='2001 Pop\'s Run Photo Album'; return true;"
this is true of all places you have Pop's in the onMouseOut events, regardless of the year involved. Also the 'return true' in the onMouseOver & onMouseOut events should be 'return true;' but, that (the semicolon) isn't critical. Once that is taken care of you can go about creating your pause like so, replace this line:
Code:
setInterval("scrollwindow()",10)
with:
Code:
ralph=setInterval("scrollwindow()",10)
add this line:under this line:Replace this line:
Code:
strength=(which==0)? 1 : 0.7
with these lines:
Code:
if (which==0){
strength=1;
clearInterval(ralph);
}
if (which==1){
strength=0.7;
startit();
}
That's it, works here in IE6, NS7.2 & FF1.0.3
Bookmarks