// JavaScript Document 


// select random photo

var randspotlight = new Array(
  	'imageshome/spotlight01.jpg', 
  	'imageshome/spotlight02.jpg', 
  	'imageshome/spotlight03.jpg',	
  	'imageshome/spotlight04.jpg'	
);

// find random number based on number of pics in array
var randnum = Math.floor(Math.random()*randspotlight.length);


// generate corresponding header
var randworking = new Array(
  	'imageshome/working01.jpg', 
  	'imageshome/working02.jpg', 
  	'imageshome/working03.jpg',	
  	'imageshome/working04.jpg'
);

