// JavaScript Document

// featured property images - 552x341

if (document.images) {
ads = new Array(5);
  //specify random images below. You can have as many as you wish
  ads[1]="http://www.k2commercialgroup.com/img/featured_310strobertblvd.jpg"
  ads[2]="http://www.k2commercialgroup.com/img/featured_6320telegraphrd.jpg"
  ads[3]="http://www.k2commercialgroup.com/img/featured_4450slindberghblvd.jpg"
  ads[4]="http://www.k2commercialgroup.com/img/featured_6060telegraphrd.jpg"
  ads[5]="http://www.k2commercialgroup.com/img/featured_1607jeffcoblvd.jpg"
}
  //specify corresponding links below
  newplace = new Array(5);
  newplace[1]="http://www.k2commercialgroup.com/retail.html"
  newplace[2]="http://www.k2commercialgroup.com/retail.html"
  newplace[3]="http://www.k2commercialgroup.com/retail.html"
  newplace[4]="http://www.k2commercialgroup.com/retail.html"
  newplace[5]="http://www.k2commercialgroup.com/retail.html"

var timer = null
var	 counter = 1

function banner() {
	    timer=setTimeout("banner()", 4000);
		counter++;
		if (counter >= 5)
		counter = 1;
		document.bannerad.src = ads[counter];
}

function featuredproperty() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}

