﻿$(document).ready(function(){$(".paging").show();$(".paging a:first").addClass("active");var imageWidthLeft=$(".Leftwindow").width();var imageSumLeft=$(".Leftimage_reel img").size();var imageReelWidthLeft=imageWidthLeft*imageSumLeft;var imageWidthRight=$(".Rightwindow").width();var imageSumRight=$(".Rightimage_reel img").size();var imageReelWidthRight=imageWidthRight*imageSumRight;$(".Leftimage_reel").css({'width':imageReelWidthLeft});$(".Rightimage_reel").css({'width':imageReelWidthRight});rotateLeft=function(){var triggerID=$active.attr("rel")-1;var image_reelPosition=triggerID*imageWidthLeft;$(".paging a").removeClass('active');$active.addClass('active');$(".Leftimage_reel").animate({left:-image_reelPosition},500);};rotateRight=function(){var triggerID=$active.attr("rel")-1;var image_reelPosition=triggerID*imageWidthRight;$(".paging a").removeClass('active');$active.addClass('active');$(".Rightimage_reel").animate({left:-image_reelPosition},500);};rotateSwitch=function(){play=setInterval(function(){$active=$('.paging a.active').next();if($active.length===0){$active=$('.paging a:first');}
rotateLeft();rotateRight();},7000);};rotateSwitch();$(".Leftimage_reel a").hover(function(){clearInterval(play);},function(){rotateSwitch();});$(".Rightimage_reel a").hover(function(){clearInterval(play);},function(){rotateSwitch();});$(".paging a").click(function(){$active=$(this);clearInterval(play);rotateLeft();rotateRight();rotateSwitch();return false;});});
