// JavaScript Document 


// select random photo

var randspotlight = new Array(
  	'imageshome/ceo01.jpg', 
  	'imageshome/ceo02.jpg', 
  	'imageshome/ceo03.jpg',
	'imageshome/ceo04.jpg', 
  	'imageshome/ceo05.jpg', 
  	'imageshome/ceo06.jpg',
	'imageshome/ceo07.jpg', 
  	'imageshome/ceo08.jpg'
);

// find random number based on number of pics in array
var randnum = Math.floor(Math.random()*randspotlight.length);


// generate corresponding alt tag
var randalt = new Array(
  	'CEO Case Study', 
  	'CEO Case Study', 
  	'CEO Case Study',
	'CEO Case Study', 
  	'CEO Case Study', 
  	'CEO Case Study',
	'CEO Case Study', 
  	'CEO Case Study'
);

