<!--
function randomContent()
{
var chosenImage=new Array();
// filenames of images in this array
chosenImage[1]="home-photo.png";
chosenImage[2]="home-photo2.png";
var chosenAltCopy=new Array();
// title and alt copy for images goes here
chosenAltCopy[1]="Click to Contact Us";
chosenAltCopy[2]="Click to Contact Us";
var getRan=Math.floor(Math.random()*chosenImage.length);
if (getRan==0)
getRan=1;
document.write('<img src=\"../images/avatars/'+chosenImage[getRan]+'" alt=\"'+chosenAltCopy[getRan]+'\" width=\"280\" height=\"276\" class=\"imageBorder\" />');
} 

