// JavaScript Document

function showdiv() {
var obj;

obj = document.getElementById("hideshow");
obj.style.left = 40;
obj.style.top = 55;
obj.style.visibility = "visible";
}

function hidediv() {
var obj;

obj = document.getElementById("hideshow");
obj.style.visibility = "hidden";
}


function hidedivR() {
var obj;

obj = document.getElementById("rittenhouse");
obj.style.visibility = "hidden";
}
function showdivR() {
var obj;

obj = document.getElementById("rittenhouse");
obj.style.left = 40;
obj.style.top = 55;
obj.style.visibility = "visible";
}

function hidedivE() {
var obj;

obj = document.getElementById("executive");
obj.style.visibility = "hidden";
}
function showdivE() {
var obj;

obj = document.getElementById("executive");
obj.style.left = 40;
obj.style.top = 55;
obj.style.visibility = "visible";
}

function hidedivH() {
var obj;

obj = document.getElementById("hawthorne");
obj.style.visibility = "hidden";
}
function showdivH() {
var obj;

obj = document.getElementById("hawthorne");
obj.style.left = 40;
obj.style.top = 55;
obj.style.visibility = "visible";
}

function hidedivC() {
var obj;

obj = document.getElementById("community");
obj.style.visibility = "hidden";
}
function showdivC() {
var obj;

obj = document.getElementById("community");
obj.style.left = 40;
obj.style.top = 55;
obj.style.visibility = "visible";
}

function hidedivI() {
var obj;

obj = document.getElementById("iron");
obj.style.visibility = "hidden";
}
function showdivI() {
var obj;

obj = document.getElementById("iron");
obj.style.left = 40;
obj.style.top = 55;
obj.style.visibility = "visible";
}

