This should be a pretty simple fix.
1. Do a search for pauseOnHover and change the status from true to false. (There should only be 2 instances where it looks something like pauseOnHover: true and they are located near the bottom of the script) Those are the parts I'm telling you to edit. If you see it calling for an actual function such as "if( ls.o.pauseOnHover == true ){" don't change anything there!
2. Do a search for navStartStop and change the status from true to false. (Once again, there should only be 2 instances that have a true/false option and they are located near the bottom of the script. Ignore any other references or function calls)
3. Do a search for the entire line of code below:
$(el).layerSlider( ($(this).index() + 1) );
4. Once you find that line, add the following code immediately beneath it:
$(el).layerSlider('stop');
NOTE: It is very important that you add that line BEFORE the }); symbols that currently appear beneath the code listed in #3 above.
In other words, it should look like this when you are done:
$(el).layerSlider( ($(this).index() + 1) );
$(el).layerSlider('stop');
});
That should do it! Good luck and let me know if you need more assistance. If you have problems with it, just let me know and I'd be happy to make the edits and send you the whole script as a txt file which you could just copy and paste to overwrite your existing code. However, I always think it's best to try to do it yourself first