function mhVillageInsert() {
	if (document.getElementById) {
		el = document.getElementById("homesListed");
		if (el) {
			el.innerHTML = aCurrentNumbers["ActiveCount"];
		}
		el = document.getElementById("homesSold");
		if (el) {
			el.innerHTML = aCurrentNumbers["SoldCount"];
		}
		el = document.getElementById("numberCommunity");
		if (el) {
			el.innerHTML = aCurrentNumbers["CommunityCount"];
		}
	}
}


if( window.addEventListener ) {
	window.addEventListener("load", mhVillageInsert, false);
} else {
	if(window.attachEvent) {
		window.attachEvent("onload", mhVillageInsert);
	} else {
		window.onload = mhVillageInsert;
	}
}

