// JavaScript Document

var img_width = "337";
var img_height = "373";
var img_title = "Evolve, Inc.";


var ad=new Array()
//insert here your images src
 ad[0]='images/home_page/staff_mike.jpg';
 ad[1]='images/home_page/staff_brent.jpg';
 ad[2]='images/home_page/staff_brian.jpg';
 ad[3]='images/home_page/staff_patricia.jpg';
 ad[4]='images/home_page/staff_shari.jpg';
 ad[5]='images/home_page/staff_tim.jpg';
 ad[6]='images/home_page/staff_will.jpg';
 ad[7]='images/home_page/staff_brittany.jpg';
 ad[8]='images/home_page/staff_dave.jpg';
 ad[9]='images/home_page/staff_jaclyn.jpg';
 ad[10]='images/home_page/staff_jon.jpg';


function getHomePic() {
	var xy=Math.floor(Math.random()*ad.length);
	document.getElementById('homePic').innerHTML='<img src="'+ad[xy]+'" width="'+img_width+'" height="'+img_height+'" alt="'+img_title+'">';
}
