<!--
var count = 3;

function $(id) { return document.getElementById(id); }

function switchTo(id) {
	for (i=1; i<=count; i++) {
		$('switch_box_' + i).style.display = "none";
		$('switch_link_' + i).style.color = "#7f7f7f";
		$('switch_link_' + i).style.textDecoration = "none";
	}
	$('switch_box_' + id).style.display = "block";
	$('switch_link_' + id).style.color = "#0096b6";
	$('switch_link_' + id).style.textDecoration = "underline";
}

window.onload = function() {
	switchTo(1);
	return true;
}
// -->