tu scrivi
codice:
...,

function(){
setInterval(slideshowPlay,3000);
});
dovresti scrivere
codice:
...,

function(){
myTimer=setInterval(slideshowPlay,3000);
});
ciao