<!--
var photos = 5;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % photos;
ad +=1;
if (ad==1){
url="/featured/";
alt="Click to View Featured Homes!";
banner="/images/shared/photo.jpg";
width="199";
height="147";
}
if (ad==2){
url="/featured/";
alt="Click to View Featured Homes!";
banner="/images/shared/photo2.jpg";
width="199";
height="147";
}
if (ad==3){
url="/featured/";
alt="Click to View Featured Homes!";
banner="/images/shared/photo3.jpg";
width="199";
height="147";
}
if (ad==4) {
url="/featured/";
alt="Click to View Featured Homes!";
banner="/images/shared/photo4.jpg";
width="199";
height="147";
}
if (ad==5) {
url="/featured/";
alt="Click to View Featured Homes!";
banner="/images/shared/photo5.jpg";
width="199";
height="147";
}
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0 align=right hspace=10 vspace=10></a>');
// -->