I have a series of images that are transitioned between using JavaScript code.
The currently displayed image is given the "active" class.
Is there a way to assign the "active" class randomly to one of the images so that it doesn't always start from the same point when the page loads?
<div id="quote">
<img class="active" src="http://dicktyler.com/dev/images/quote1.png" />
<img src="http://dicktyler.com/dev/images/quote2.png" />
<img src="http://dicktyler.com/dev/images/quote3.png" />
<img src="http://dicktyler.com/dev/images/quote4.png" />
</div>