// scripts for left-side menu
live_on = new Image();
live_on.src = "/images/buttons/live_on.gif";
live_off = new Image();
live_off.src = "/images/buttons/live_off.gif";
residents_on = new Image();
residents_on.src = "/images/buttons/residents_on.gif";
residents_off = new Image();
residents_off.src = "/images/buttons/residents_off.gif";
search_on = new Image();
search_on.src = "/images/buttons/search_on.gif";
search_off = new Image();
search_off.src = "/images/buttons/search_off.gif";
about_on = new Image();
about_on.src = "/images/buttons/about_on.gif";
about_off = new Image();
about_off.src = "/images/buttons/about_off.gif";
contact_on = new Image();
contact_on.src = "/images/buttons/contact_on.gif";
contact_off = new Image();
contact_off.src = "/images/buttons/contact_off.gif";

function itemOn(which) {
	document.getElementById(which).src = "/images/buttons/" + which + "_on.gif";
}
function itemOff(which) {
	document.getElementById(which).src = "/images/buttons/" + which + "_off.gif";
}