
// EngineerYourself.com
// 2007 Drew Hamlin

function hideAll() {
	['what', 'why', 'how'].each(Element.hide);
}

function switchTo(id) {
	var box = $(id);
	var wasVisible = box.visible();
	hideAll();
	if (!wasVisible)
		box.show();
}

