// Site specific variables and functions
function show(id){
	var thisDiv
	for(var i = 1; i < 27; i++){
		thisDiv = document.getElementById('show' + i);
		thisDiv.style.display = "none";
	}
	thisDiv = document.getElementById(id);
	thisDiv.style.display = "block";
}
//-----------------------------------------------------------------