function SectionOver() {
	el = event.srcElement;
	while (el.tagName.toUpperCase()!="DIV" && el.tagName.toUpperCase()!="BODY") el=el.parentElement;
	if (el.tagName.toUpperCase()!="DIV") return false;
	if (el.className=="Section") {
		el.className="SectionHover";
	}
}

function SectionOut() {
	el = event.srcElement;
	while (el.tagName.toUpperCase()!="DIV" && el.tagName.toUpperCase()!="BODY") el=el.parentElement;
	if (el.tagName.toUpperCase()!="DIV") return false;
	if (el.className=="SectionHover") {
		el.className="Section";
	}
}