$(function(){var imgNo=5;var currentNo=0;var targetNo=0;var timerId;var fspeeds=1000;var links=["","",""];var alts=[" "," "," "];(function(){for(var i=1;i<=imgNo;i++){$('<div id="rImg'+i+'">').appendTo($('#mainImg'));var img=$('<img>').attr('src','images/main_'+i+'.jpg');img.attr('alt',alts[i-1]);img.load(imgLoaded.call(img,i))}})();function imgLoaded(no){var obj=$('#rImg'+no);obj.children('img').remove();obj.append($(this));if(no==1)loop()}function loop(){if(currentNo!=0)$('#rImg'+currentNo).fadeOut(fspeeds);if(targetNo==0)currentNo=++currentNo>imgNo?1:currentNo;else currentNo=targetNo;targetNo=0;$('#rImg'+currentNo).fadeIn(fspeeds);timerId=setTimeout(loop,4000)}});
