function swapContentDivs(divTitle,divIDOn,howManyDivs){
	//alert(divTitle);
	var i=1;
	for (i=1;i<=howManyDivs;i++){
		if(divIDOn == i){
			var bob="help";
			document.getElementById(divTitle+divIDOn+'').style.display = 'block';
		}else{
			document.getElementById(divTitle+i+'').style.display = 'none';
		}
	}

}  

function swapPicture(pID,pictureName){
	 //document.getElementById('bigImage').src = "/properties/images/" + pID + "/lrg/" + pictureName + ".jpg";
}