// this script controls the rotating image
var theImages = new Array() 

// edit the following array if the images change
theImages[0] = 'img/starters/01.jpg'
theImages[1] = 'img/starters/02.jpg'
theImages[2] = 'img/starters/03.jpg'
theImages[3] = 'img/starters/04.jpg'
theImages[4] = 'img/starters/05.jpg'
theImages[5] = 'img/starters/06.jpg'
theImages[6] = 'img/starters/07.jpg'
theImages[7] = 'img/starters/08.jpg'
theImages[8] = 'img/starters/09.jpg'
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage()
{
	document.write("<a href='../business-development.php'><img src='"+theImages[whichImage]+"' width='254' height='85' border='0' alt='Read about our Business development services'></a>");
	
}

//  End -->