var othermakes_slideShowSpeed=4000;
var othermakes_crossFadeDuration=2;

var othermakes_Pic = new Array();
othermakes_Pic[0]="/images/servicing-rotate-1.jpg";
othermakes_Pic[1]="/images/servicing-rotate-2.jpg";
othermakes_Pic[2]="/images/servicing-rotate-3.jpg";
othermakes_Pic[3]="/images/servicing-rotate-4.jpg";

var othermakes_t;
var othermakes_j=0;
var othermakes_p=othermakes_Pic.length;

var othermakes_preLoad=new Array();
for (othermakes_i=0;othermakes_i<othermakes_p;othermakes_i++){
othermakes_preLoad[othermakes_i]=new Image();
othermakes_preLoad[othermakes_i].src=othermakes_Pic[othermakes_i]};

function othermakes_runSlideShow(){
if (document.all){
document.images.othermakes_SlideShow.style.filter="blendTrans(duration=othermakes_crossFadeDuration);"
document.images.othermakes_SlideShow.filters.blendTrans.Apply();
}
document.images.othermakes_SlideShow.src=othermakes_preLoad[othermakes_j].src;
if (document.all){
document.images.othermakes_SlideShow.filters.blendTrans.Play();
}
othermakes_j=othermakes_j+1;
if (othermakes_j>(othermakes_p-1)) othermakes_j=0;
othermakes_t=setTimeout('othermakes_runSlideShow()', othermakes_slideShowSpeed);
}