var currentMenuSelection = "home";
var currentBandMemberPhoto = "mark";

try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

function goTo(dest) {

	if (dest != currentMenuSelection) {

		document.getElementById(dest).style.display = "block";
		document.getElementById(dest + "_bottom").style.display = "block";
		document.getElementById("menu_" + dest).style.backgroundColor = "#727272";
		document.getElementById("text_" + dest).style.color = "#000000";

		document.getElementById(currentMenuSelection).style.display = "none";
		document.getElementById(currentMenuSelection + "_bottom").style.display = "none";
		document.getElementById("menu_" + currentMenuSelection).style.backgroundColor = "#444444";
		document.getElementById("text_" + currentMenuSelection).style.color = "#cccccc";

		currentMenuSelection = dest;

	}

}

function menuOver(item) {
	if (item.id != "menu_" + currentMenuSelection) {
		item.style.backgroundColor = "#373737";
	}
}

function menuOut(item) {
	if (item.id != "menu_" + currentMenuSelection) {
		item.style.backgroundColor = "#444444";
	}
}

function photoOver(item) {
	if (item.id != currentBandMemberPhoto) {
		item.style.backgroundColor = "#262626";
	}
}

function photoOut(item) {
	if (item.id != currentBandMemberPhoto) {
		item.style.backgroundColor = "#000000";
	}
}

function photoClick(item) {
	if (item.id != currentBandMemberPhoto) {
		item.style.backgroundColor = "#444444";
		document.getElementById(item.id + "-jpg").style.display = "block";
		document.getElementById(currentBandMemberPhoto).style.backgroundColor = "#000000";
		document.getElementById(currentBandMemberPhoto + "-jpg").style.display = "none";
		currentBandMemberPhoto = item.id;
	}
}

function gethostname() { 
	return location.hostname;
}
