$(document).ready(function() {
$(".sayfalama").show();
$(".sayfalama a:first").addClass("active");
var imageWidth=$(".window").width();
var imageSum=$(".image_reel img").size();
var imageReelWidth=imageWidth*imageSum;
$(".image_reel").css({'width':imageReelWidth});
rotate=function(){
var triggerID=$active.attr("rel")-1;
var image_reelPosition = triggerID*imageWidth;
$(".sayfalama a").removeClass('active');
$active.addClass('active');
$(".image_reel").animate({
left: -image_reelPosition},750);
};
rotateSwitch=function(){
play=setInterval(function(){
$active=$('.sayfalama a.active').next();
if($active.length===0) {
$active=$('.sayfalama a:first');
}
rotate();
},7000);
};
rotateSwitch();
$(".image_reel a").hover(function() {
clearInterval(play);
}, function() {
rotateSwitch();
});
$(".sayfalama a").click(function() {
$active = $(this);
clearInterval(play);
rotate();
rotateSwitch();
return false;
});
});

