var http = false;

if(navigator.appName == "Microsoft Internet Explorer") {
  http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
  http = new XMLHttpRequest();
} 

function loadFeatured() {
if(document.getElementById('featuredproperties'))
{
  http.open("GET", "http://gympierealestate.com.au/properties-featured.php", true);
  http.onreadystatechange=function() {
    if(http.readyState == 4) {
      document.getElementById('featuredproperties').innerHTML = http.responseText;
    }
  }
  http.send(null);
  }
}


function swapImage(url)
{
	
	document.getElementById('mainImage').src = url;

}
