$(function(){ $(".flashbanner").each(function(){ var timer; $(".flashbanner .mask img").click(function(){ var index = $(".flashbanner .mask img").index($(this)); changeimg(index); }).eq(0).click(); $(this).find(".mask").animate({ "bottom":"0" },700); $(".flashbanner").hover(function(){ clearinterval(timer); },function(){ timer = setinterval(function(){ var show = $(".flashbanner .mask img.show").index(); if (show >= $(".flashbanner .mask img").length-1) show = 0; else show ++; changeimg(show); },3000); }); function changeimg (index) { $(".flashbanner .mask img").removeclass("show").eq(index).addclass("show"); $(".flashbanner .bigimg").parents("a").attr("href",$(".flashbanner .mask img").eq(index).attr("link")); $(".flashbanner .bigimg").hide().attr("src",$(".flashbanner .mask img").eq(index).attr("uri")).fadein("slow"); } timer = setinterval(function(){ var show = $(".flashbanner .mask img.show").index(); if (show >= $(".flashbanner .mask img").length-1) show = 0; else show ++; changeimg(show); },3000); }); });