// JavaScript Document

function fnSwapImages(x)
{
	/*document.getElementById('bedImages').src.value = 'images/bedroom3_small.jpg';
	window.reload();*/
}

function fnDisplayHouse()
{
	document.getElementById('bigImage').style.display=="block";
	//document.getElementById('infoDiv3').style.display="block"
}
 
function fnHideHouse()
{
	document.getElementById('bigImage').style.display="none";
	//document.getElementById('infoDiv3').style.display="block"
}
   