// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/conceptpic/accountability.jpg'
theImages[1] = 'images/conceptpic/confidence.jpg'
theImages[2] = 'images/conceptpic/growth.jpg'
theImages[3] = 'images/conceptpic/integrity.jpg'
theImages[4] = 'images/conceptpic/teamwork.jpg'
theImages[5] = 'images/conceptpic/trust.jpg'

var theAlt = new Array()
theAlt[0] = 'Schlabig provides Accountability to their clients for all their Tax, Accounting, Audit, Assurance, Valuation, Bookkeeping and Human Resource needs.'
theAlt[1] = 'Have Confidence in Schlabig to manage your Tax, Accounting, Audit, Assurance, Valuation, Bookkeeping and Human Resource needs.'
theAlt[2] = 'Schlabig will help your business Grow with our Tax, Accounting, Audit, Assurance, Valuation, Bookkeeping and Human Resource services.'
theAlt[3] = 'Schlabig provides Integrity with all our Tax, Accounting, Audit, Assurance, Valuation, Bookkeeping and Human Resource services. '
theAlt[4] = 'Teamwork - Team up with Schlabig Schlabig to manage your Tax, Accounting, Audit, Assurance, Valuation, Bookkeeping and Human Resource needs.'
theAlt[5] = 'Trust Schlabig to manage your Tax, Accounting, Audit, Assurance, Valuation, Bookkeeping and Human Resource needs.'


// 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]+'">');
document.write('<img src="'+theImages[whichImage]+'" alt="'+theAlt[whichImage]+'">');
}