// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 10000

// Duration of crossfade (seconds)
var crossFadeDuration = 3

// Specify the image files
var Pic = new Array() // don't touch this
var Pic2 = new Array() // don't touch this
var Pic3 = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below
Pic[0] = 'images/slideshow/1.jpg'
Pic[1] = 'images/slideshow/2.jpg'
Pic[2] = 'images/slideshow/3.jpg'
Pic[3] = 'images/slideshow/4.jpg'




// =======================================
// do not edit anything below this line
// =======================================

var t,u,v
var j = 0
var k = 0
var m = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

var tes = new Array();
	tes[0] = "Wow! Your rates are the best I have ever seen and we have rented a few cars in our time, great website and so please I surfed around looking for better deals and found you. Thanks!";
	tes[1] = "Just a short note to say the Golf Trip went very well and the group really enjoyed themselves. Thank you for making it successful by your efficient attention. We enjoy catching up with you every year.";
	tes[2] = "During my check in Rose still fielded calls in a most professional manner and with a very exacting and humorous style. - I know to her it might 'be just a job', but please pass on my utmost appreciation for all she did for me, maps, explanations of how to get out of Brisbane, insurance details, the car itself checked, and most importantly she was genuinely appreciative that I had hired the car from her!";
	tes[3] = "..we wish to express our gratitude to you all for your outstanding service. We rented your Camry from the 20 - 27 Aug we had a fantastic time we wish to express how friendly Rose was when she picked us up from the airport. The man with the long hair that dropped us off was a top bloke. We hope to be back over Christmas and look forward to using your services again...";
	tes[4] = "We have thoroughly enjoyed our holiday and having a car to move around in, contributed to that and we do not hesitate to recommend Roadway Rent A Car to our friends...";

var current

function runSlideShow(){

	   if (document.all){
		  document.images.SlideShow.style.filter="blendTrans(duration=2)"
		  document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
		  document.images.SlideShow.filters.blendTrans.Apply()      
	   }
   
		//Image slideshow
		p = preLoad.length
		document.images.SlideShow.src = preLoad[j].src

		//Random testimonial
		document.getElementById("dright").innerHTML = tes[Math.floor(Math.random()*tes.length)];

		if (document.all){
			document.images.SlideShow.filters.blendTrans.Play()
		}
	   j = j + 1
	   if (j > (p-1)) j=0
	   t = setTimeout('runSlideShow()', slideShowSpeed)

}