function init()
{
	switchdiv("expdiv1");
}

function switchdiv(expdivid)
{
	for (var i = 1; i <11; i++)
		document.getElementById("expdiv" + i).style.display = "none";
	var expdiv = document.getElementById(expdivid);
	expdiv.style.display = "";
}
