I asked a question How can I display an image in a div if is hovered over and thanks to adeneo here is a solution (jsFiddle):
Markup:
<div id="imgs">
<img src="http://www.flash-slideshow-maker.com/images/help_clip_image020.jpg" alt="image 1">
<img src="http://www.nasa.gov/images/content/297522main_image_1244_946-710.jpg" alt="image 2">
<img src="http://www.dreamincode.net/forums/uploads/monthly_05_2010/post-380028-12747928967239.jpg" alt="image 3">
</div>
<ul id="my-ul">
<li><a href="#" class="img1">hover to see image1</a></li>
<li><a href="#" class="img2">hover to see image2</a></li>
<li><a href="#" class="img3">hover to see image3</a></li>
</ul>
JavaScript:
$('#my-ul a').on('mouseenter mouseleave', function(e) {
$('#imgs img').eq($(this).parent('li').index()).toggle(e.type==='mouseenter');
});
How to modify http://jsfiddle.net/ScAVW/1/ so that every second images change as 1->2->3->1->2->3->1... within div, unless link is hovered. If one of three links is hovered, the corresponded image displayed. It is stopped, when hovered. Once your mouse leaves, images start changing within div again.