Hello,
I am creating an image banner which has rollover links which change the text and image. What I need to happen is for this to rotate every 5 seconds through the 5 images, but on mouseover it would pause the roation and take you to the image which the user has selected. My Mouseover code is:
$("#main_nav li").mouseover( function() {
$(".navigation_main, .main_info").each (function() {
$(this).removeClass("on").addClass("off");
});
$("#"+$(this).attr("id")).removeClass("off").addClass("on");
$("#"+$(this).attr("id")+"_images").removeClass("off").addClass("on");
$("#"+$(this).attr("id")+"_text").removeClass("off").addClass("on");
$("#"+$(this).attr("id")+"_a").removeClass("off").addClass("on");
});
Any help on getting this to rotate would be great.
Many thanks