// JavaScript Document // select random photovar randimage = new Array(  	'imageshome/spotlight1.jpg',   	'imageshome/spotlight2.jpg',   	'imageshome/spotlight3.jpg',	'imageshome/spotlight4.jpg',	'imageshome/spotlight5.jpg',	'imageshome/spotlight6.jpg',	'imageshome/spotlight7.jpg');// find random number based on number of pics in arrayvar randnum = Math.floor(Math.random()*randimage.length);// generate corresponding alt tagvar randalt = new Array(  	'Image',   	'Image',   	'Image',	'Image',	'Image',	'Image',	'Image',	'Image',	'Image',	'Image');