Acreator57887,
Так - не спасает ?
$(window).load(function(){
$(".button").show();
var imageWidth = $(".window").width();
var imageSum = $(".image_reel img").size();
var imageReelWidth = imageWidth * imageSum;
var control_x = (imageSum-1)*(0-900);
var x = 0;
$(".image_reel").css({'width' : imageReelWidth});
rotate_l = function(){
if (x<0) {
$(".image_reel").animate({
left: x+900
}, 500 );
x = x + 900;
}
else {
$(".image_reel").animate({
left: control_x
}, 1000 );
x = control_x;
}
};
rotate_r = function(){
if (x>control_x) {
$(".image_reel").animate({
left: x-900
}, 500 );
x = x - 900;
}
else {
$(".image_reel").animate({
left: 0
}, 1000 );
x = 0;
}
};
var play;
rotateSwitch = function(){
play = setInterval(function(){
rotate_r();
}, 6000);
};
rotateSwitch();
$(".button a").hover(function() {
clearInterval(play);
}, function() {
rotateSwitch();
});
$("#arrow_l").click(function() {
clearInterval(play);
rotate_l();
return false;
});
$("#arrow_r").click(function() {
clearInterval(play);
rotate_r();
return false;
});
});
Поправил