//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(4);

images[0] = "<a href = '/our_busniess/'><img src='/assets/images/Homepage/home_people05.jpg' alt='Our Business' border= '0' ></a>";

images[1] = "<a href = '/our_busniess/'><img src='/assets/images/Homepage/home_people06.jpg' alt='Our Business' border= '0' ></a>";

images[2] = "<a href = '/our_busniess/'><img src='/assets/images/Homepage/home_people07.jpg' alt='Our Business' border= '0' ></a>";

images[3] = "<a href = '/our_busniess/'><img src='/assets/images/Homepage/home_people08.jpg' alt='Our Business' border= '0' ></a>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

// -->




