function randImgCap()
{
var banner = new Array();
banner[0] ="images/wolfsystems_logo.gif"
banner[1] ="images/williamgrants_logo.gif"
banner[2] ="images/mapleleaf_logo.gif"
banner[3] ="images/langmeadfarms_logo.gif"
banner[4] ="images/diageo_logo.gif"
banner[5] ="images/chivasregal_logo.jpg"
banner[6] ="images/burtonfoods_logo.gif"
banner[7] ="images/georgiapacific_logo.gif"
banner[8] ="images/fairfax_logo.gif";

var caption = new Array();
caption[0] = "'Their attention to detail has resulted in us now confidently discussing a second materials handling project with them...'"
caption[1] = "'The project was completed with minimum disruption to operations, on time and within budget...'"
caption[2] = "'The system was completed on time, within budget and has proven to be very successful...'"
caption[3] = "'The system was installed on time and has been operating successfully and trouble free...'"
caption[4] = "'Conveyor Systems fulfilled all their obligations throughout the project to the level we had expected of them...'"
caption[5] = "'The CSL bottle case feed system has been installed and has certainly achieved the desired result of speeding up the packing operations...'"
caption[6] = "'The CSL case reject system was installed to time and within budget, with minimum disruption to the ongoing production lines...'"
caption[7] = "'CSL is a company with integrity and was very professional in the way they approached this project...'"
caption[8] = "'CSL provided us with a very effective conveyor system that has continued to operate trouble free in a difficult working environment...'";

random = Math.floor(Math.random() * banner.length);
document.getElementById ('randomImage').src = banner[random];
document.getElementById ('caption').innerHTML = caption[random];
}