File: D:/HostingSpaces/SBogers18/decoockpit.nl/wwwroot/facebook/css-js/coockpit.js
// JavaScript Document
$(document).ready(function(){
var activeSliderPhoto = 0;
var totalSliderPhotos = $(".fotoSlider li").length;
var gallerySliderPlay = true;
var photoWidth = $(".fotoSlider li").eq(0).width();
if(totalSliderPhotos == 1){
gallerySliderPlay =false;
}
function photoSliderRotate(){
if(gallerySliderPlay){
$.doTimeout( 3000, function(){
if(gallerySliderPlay){
activeSliderPhoto = activeSliderPhoto + 1;
if(activeSliderPhoto == totalSliderPhotos){ activeSliderPhoto = 0; }
var newPhotoPos = activeSliderPhoto * photoWidth * -1 + "px";
$(".fotoSlider .frame").stop().animate({"left": newPhotoPos}, "slow");
photoSliderRotate();
}
});
}
}
photoSliderRotate();
});