No, this isn't out of our scope at all.
Code:
a.featureLinks:visited:hover {
font-size: 12px;
color: ##005500;
text-decoration: none;
}
First of all, watch where you're putting those hashes. You could have someone's eye out. 
Secondly, see:
Code:
function stopslide(){
copyspeed=0
clearInterval(lefttime)
}
This obviously causes an error if the slideshow hasn't started yet, as lefttime doesn't exist. Add simple error checking:
Code:
function stopslide(){
if(!lefttime) return;
copyspeed=0
clearInterval(lefttime)
}
Thirdly, one problem in your first example is that you're passing it a non-existent variable where it expects a string. If that actually is a valid object, it shouldn't be. Pass it the ID of the element, as a string, surrounded in quotes. Could you do this on your demo page?
Bookmarks