// JavaScript Document for randomized image displayed on the ASA homepage
// random image code
//
// randimage: array of random photos
//

var randimage = new Array(
  	'a',  
  	'b',  
  	'c',  
  	'd',  
  	'e'  
);

// find random number based on number of pics in array
var randnum = Math.floor(Math.random()*randimage.length);