<!--
 
 function image() {
 };
 
 image = new image();
 number = 0;
 
 // imageArray
 image[number++] = "<img src='http://www.therealtygroupflorida.com/images/flash/images/pic1.jpg' border='0'>"
 image[number++] = "<img src='http://www.therealtygroupflorida.com/images/flash/images/pic2.jpg' border='0'>"
 image[number++] = "<img src='http://www.therealtygroupflorida.com/images/flash/images/pic3.jpg' border='0'>"
 image[number++] = "<img src='http://www.therealtygroupflorida.com/images/flash/images/pic4.jpg' border='0'>"
 image[number++] = "<img src='http://www.therealtygroupflorida.com/images/flash/images/pic5.jpg' border='0'>"
 image[number++] = "<img src='http://www.therealtygroupflorida.com/images/flash/images/pic6.jpg' border='0'>"
 image[number++] = "<img src='http://www.therealtygroupflorida.com/images/flash/images/pic7.jpg' border='0'>"
 // keep adding items here...
 
 increment = Math.floor(Math.random() * number);
 
 document.write(image[increment]);
 //-->