function showDiv(id) {

	document.getElementById(currentDiv).style.display="none";
	document.getElementById(id).style.display="block";
	currentDiv = id;
	}
function changeClass(obj,id) {
	if (obj.className =='button_off'){obj.className ='button_on';}
	document.getElementById(id).className = "button_off";
	}
