Trying to create a custom javascript slider, the idea is it cycles through 4 divs each with their own different content automatically. In addition, at the side there is a button for each, when you click it, it will show the relevant div and stop on it.
However there are currently three errors with this
1. Once you have clicked on an item, after a while, it continues to loop
2. Once you try and click another item, it will not.
3. The longer you stop on the page, the faster it cycles through the items.
Any help is appreciated, thankyou!
Deestan is right, run a continuous loop. You were creating new timers indiscriminately, which must of been creating the speedups. Here is a simplified version of your code (http://jsfiddle.net/Ek5pQ/45/):