//First we create an array and store all the images we need to rondomize.
ImagesArray = new Array(5);
ImagesArray[0] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/animals/butterflies-page-1.html'><img src='http://www.msndisplaypicturesarena.com//Library/animals/butterflies/default/butterfly45.jpg' border=0 alt='Butterflies Display Pictures'></a>";
ImagesArray[1] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/animals/snakes-page-1.html'><img src='http://www.msndisplaypicturesarena.com/Library/animals/snakes/default/pitone1.jpg' border=0 alt='Snakes Display Pictures'></a>";

ImagesArray[2] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/zodiac-signs/baby-page-1.html'><img src='http://www.msndisplaypicturesarena.com/Library/zodiac/baby/default/cancer.jpg' border=0 alt='Baby Zodiac Display Pictures'></a>";

ImagesArray[3] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/animals/fish-page-1.html'><img src='http://www.msndisplaypicturesarena.com/Library/animals/fish/default/fish06.jpg' border=0 alt='Fish Display Pictures'></a>";

ImagesArray[4] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/animals/raptors-page-1.html'><img src='http://www.msndisplaypicturesarena.com/Library/animals/raptors/eagles/eagle01.jpg' border=0 alt='Raptors Display Pictures'></a>";

ImagesArray[5] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/animals/cats-page-1.html'><img src='http://www.msndisplaypicturesarena.com/Library/animals/cats/default/cat003.jpg' border=0 alt='Cats Display Pictures'></a>";

ImagesArray[6] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/zodiac-signs/ladies-page-1.html'><img src='http://www.msndisplaypicturesarena.com/Library/zodiac/ladies/default/leo.jpg' border=0 alt='Ladies Display Pictures'></a>";

ImagesArray[7] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/animals/dogs-page-1.html'><img src='http://www.msndisplaypicturesarena.com/Library/animals/dogs/default/dog348.jpg' border=0 alt='Dogs Display Pictures'></a>";

ImagesArray[8] = "<a href='http://www.msndisplaypicturesarena.com/msn-display-pictures/animals/pigs-page-1.html'><img src='http://www.msndisplaypicturesarena.com/Library/animals/pigs/default/bride.jpg' border=0 alt='Pigs Display Pictures'></a>";


var UsedIndexes = "";//Variable used to store all the generated indexes.

function GenerateRandomNumber(TotalImages){
var NewIndex = 0;
NewIndex = Math.floor(Math.random() * TotalImages);
	if(UsedIndexes.indexOf('[' + NewIndex + ']') == -1){//If Not Already in Use.
		UsedIndexes += '[' + NewIndex + ']';
		return NewIndex;
	}
	else{
		return GenerateRandomNumber(TotalImages);
	}
}
