<!--
//********** LEFT IMAGES **************
//Javascript Created by Computerhope http://www.computerhope.com
//store the images in arrays
limages = new Array(4);
limages[0] = "<a href = '/listmgr/listings/l0010.html'><img src='randomhome/10.jpg' alt='150 Beachcomber Drive, Shell Beach' style='vertical-align:middle' border='0'></a>";
limages[1] = "<a href = '/listmgr/listings/l0014.html'><img src='randomhome/14.jpg' alt='2975 Bayview Drive, Shell Beach' style='vertical-align:middle' border='0'></a>";
limages[2] = "<a href = '/listmgr/listings/l0015.html'><img src='randomhome/15.jpg' alt='2985 Bayview Drive, Shell Beach' style='vertical-align:middle' border='0'></a>";
limages[3] = "<a href = '/listmgr/listings/l0005.html'><img src='randomhome/5.jpg' alt='2980 Bayview Drive, Shell Beach' style='margin-left:5px; vertical-align:middle' border='0'></a>";
index = Math.floor(Math.random() * limages.length);
document.write(limages[index]);
//******* END LEFT IMAGES// -->
<!--
//********** RIGHT IMAGES **************
//Javascript Created by Computerhope http://www.computerhope.com
//store the images in arrays
rimages = new Array(4);
rimages[0] = "<a href = '/listmgr/listings/l0004.html'><img src='randomhome/4.jpg' alt='10 Bluff Drive, Shell Beach' style='margin-left:5px; vertical-align:middle' border='0'></a>";
rimages[1] = "<a href = '/listmgr/listings/l0007.html'><img src='randomhome/7.jpg' alt='271 Wadsworth Ave, Pismo Beach' style='margin-left:5px; vertical-align:middle' border='0'></a>";
rimages[2] = "<a href = '/listmgr/listings/l0001.html'><img src='randomhome/1.jpg' alt='334 Indio Drive, Shell Beach' style='margin-left:5px; vertical-align:middle' border='0'></a>";
rimages[3] = "<a href = '/listmgr/listings/l0009.html'><img src='randomhome/9.jpg' alt='1385 Corberosa Drive, Arroyo Grande' style='margin-left:5px; vertical-align:middle' border='0'></a>";
rimages[4] = "<a href = '/listmgr/listings/l0008.html'><img src='randomhome/8.jpg' alt='220 Ocean View Ave #1, Pismo Beach' style='margin-left:5px; vertical-align:middle' border='0'></a>";

index = Math.floor(Math.random() * rimages.length);
document.write(rimages[index]);
//******* END RIGHT IMAGES// -->

