var how_many_ads = 10;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="50th Street";
url="properties/50.htm";
alt="Featured Property";
banner="featured/50.gif";
width="216";
height="195";
}
if (ad==2) {
txt="Seatac 370 Units";
url="properties/sea370.htm";
alt="Featured Property";
banner="featured/370.gif";
width="216";
height="195";
}
if (ad==3) {
txt="Bell Towne Centre";
url="properties/btc.htm";
alt="Featured Property";
banner="featured/btc.gif";
width="216";
height="195";
}
if (ad==4) {
txt="Burnett Self Storage";
url="properties/burnett.htm";
alt="Featured Property";
banner="featured/burn.gif";
width="216";
height="195";
}
if (ad==5) {
txt="Lake Street Place";
url="properties/lsp.htm";
alt="Featured Property";
banner="featured/lsp.gif";
width="216";
height="195";
}
if (ad==6) {
txt="Sammamish Townhomes";
url="properties/sam.htm";
alt="Featured Property";
banner="featured/sam.gif";
width="216";
height="195";
}
if (ad==7) {
txt="Seatac Retail / Office";
url="properties/seatac.htm";
alt="Featured Property";
banner="featured/sea.gif";
width="216";
height="195";
}
if (ad==8) {
txt="Spanaway";
url="properties/span.htm";
alt="Featured Property";
banner="featured/span.gif";
width="216";
height="195";
}
if (ad==9) {
txt="State Street";
url="properties/state.htm";
alt="Featured Property";
banner="featured/state.gif";
width="216";
height="195";
}
if (ad==10) {
txt="Yakima Triangle";
url="properties/yakima.htm";
alt="Featured Property";
banner="featured/yak.gif";
width="216";
height="195";
}
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small>' + txt + '</small></a>');
document.write('</center>');