<!--
imageFilename = new Array("apt.jpg","apt-dining.jpg","apt-kitchen.jpg")
function randomNumber() {
selection = Math.floor(Math.random() * imageFilename.length);
if ( selection == imageFilename.length ) selection = 0;
return selection;
}
function printImg() {
document.write('<img src="images/'+imageFilename[randomNumber()]+'"width="552" height="172" alt="Dallas Apartments"></td>\n');
}
// -->
