// JavaScript Document
function doSection(objid) {
	if(document.getElementById(objid).className == "off") {
		document.getElementById(objid).className = "on";
	}
	else {
		document.getElementById(objid).className = "off";
	}
}
