// JavaScript Document

function showDIV(showID, hideID) {
	document.getElementById(showID).style.display = "block";
	document.getElementById(hideID).style.display = "none";
}

function showHouseInfo(){
	document.getElementById("householdInfo").style.display = "block";
}

function showInfoPop(divID){
	document.getElementById(divID).style.display = "block";
}

function hideCavityWall(){
	document.getElementById("cavityWall").style.display = "none";
}

function showCavityWall(){
	document.getElementById("cavityWall").style.display = "block";
}