
// Random Image
var theImages = new Array()
theImages[0] = 'images/home/meet-the-team-thumb.jpg'
theImages[1] = 'images/home/skin-deep-thumb.jpg'
theImages[2] = 'images/home/average-cyclist-thumb.jpg'
theImages[3] = 'images/home/splash-hiring.jpg'

var theLinks = new Array()
theLinks[0] = 'articles/meet-the-team.php'
theLinks[1] = 'articles/skin-deep.php'
theLinks[2] = 'articles/average-cyclist.php'
theLinks[3] = 'career/index.php'

// do not edit anything below this line
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="'+theLinks[whichImage]+'"><img src="'+theImages[whichImage]+'"/></a>');
	}
//  End -->