
function randomContent()
{
var chosenImage=new Array();

//filenames of images in this array
chosenImage[1]="highlight_babies.jpg";
chosenImage[2]="highlight_careers.jpg";
chosenImage[3]="highlight_foundation.jpg";
chosenImage[4]="highlight_physician.jpg";
chosenImage[5]="highlight_rehabilitation.jpg";
chosenImage[6]="highlight_reid.jpg";

var chosenAltCopy=new Array();

//title and alt copy for images goes here
chosenAltCopy[1]="Reid Babies";
chosenAltCopy[2]="Reid Careers";
chosenAltCopy[3]="Reid Foundation";
chosenAltCopy[4]="Reid Physicians";
chosenAltCopy[5]="Reid Rehabilitation";
chosenAltCopy[6]="The New Reid";

var chosenLink=new Array();

//url for image goes here
chosenLink[1]="healthcare_services/reid_babies/index.cgi";
chosenLink[2]="careers/index.html";
chosenLink[3]="foundation/index.html";
chosenLink[4]="physician/index.html";
chosenLink[5]="healthcare_services/rehabilitation_services/index.html";
chosenLink[6]="about_reid/new_reid/index.html";

var getRan=Math.floor(Math.random()*chosenImage.length);
if (getRan==0)
getRan=1;

document.write('<a href="'+chosenLink[getRan]+'"><img src=\"images/'+chosenImage[getRan]+'" alt=\"'+chosenAltCopy[getRan]+'\" width=\"442\" height=\"226\" border=\"0\" /></a>')
}
