var theImages = new Array() 
theImages[0] = '/img/health-care-jobs-2.jpg'
theImages[1] = '/img/health-care-jobs-3.jpg'
theImages[2] = '/img/health-care-jobs-4.jpg'
theImages[3] = '/img/health-care-jobs-5.jpg'
theImages[4] = '/img/health-care-jobs-6.jpg'
theImages[5] = '/img/health-care-jobs-7.jpg'
theImages[6] = '/img/health-care-jobs-8.jpg'
theImages[7] = '/img/health-care-jobs-9.jpg'
theImages[8] = '/img/health-care-jobs-11.jpg'
theImages[9] = '/img/health-care-jobs-12.jpg'
theImages[10] = '/img/health-care-jobs-13.jpg'
theImages[11] = '/img/health-care-jobs-14.jpg'
theImages[12] = '/img/health-care-jobs-15.jpg'
theImages[13] = '/img/health-care-jobs-16.jpg'
theImages[14] = '/img/health-care-jobs-17.jpg'
theImages[15] = '/img/health-care-jobs-1.jpg'
theImages[16] = '/img/health-care-jobs-10.jpg'

// 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('<img src="'+theImages[whichImage]+'" style="border: 4px solid #ccc;" title="The health care job scene is changing." width=300 height=314>');
}

