// ActionScript Document
function Show(id) {
	document.getElementById(id).style.display = "block";
}

xList = "dining,family"
function ShowHide(id) {
	var xArray = xList.split(",");
	for (i=0;i<xArray.length;i++) {
		document.getElementById(xArray[i]+'form').style.display = "none";
		document.getElementById(xArray[i]+'images').style.display = "block";
	}
	document.getElementById(id+'form').style.display = "block";
	document.getElementById(id+'images').style.display = "none";
}
