<!--
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
if (document.images) {
//Leftbar images  
  img01 = new Image();
  img01.src = "images/find_a_home/featured_listings_off.gif";
  img012 = new Image();
  img012.src = "images/find_a_home/featured_listings_on.gif";
  img02 = new Image();
  img02.src = "images/find_a_home/water_front_off.gif";
  img022 = new Image();
  img022.src = "images/find_a_home/water_front_on.gif";
  img03 = new Image();
  img03.src = "images/find_a_home/golf_course_off.gif";
  img032 = new Image();
  img032.src = "images/find_a_home/golf_course_on.gif";
  img04 = new Image();
  img04.src = "images/find_a_home/area_homes_off.gif";
  img042 = new Image();
  img042.src ="images/find_a_home/area_homes_on.gif";


}
function OnImage(name) {
	if (document.images) {
		fullname = eval(name + "2");
		document[name].src = fullname.src;
	}
}
function OffImage(name) {
  if (document.images) {
    fullname = eval(name);
	if (fullname.complete) {
      document[name].src = fullname.src;
	}
  }
}
//-->