function handled(e) {
	var targ;
	if (!e) var e = window.event;
	if (e.target) targ = e.target
		else if (e.srcElement) targ = e.srcElement;
		if (targ.nodeType == 3) // defeat Safari bug
			targ = targ.parentNode;
	targ.className="over";
}
var mainTable = document.getElementById("imageDynaBox");
var theObj;
for (var i=0; i<mainTable.rows.length;i++ ) {
	for (var j=0; j < mainTable . rows[1] . cells . length ; j++ ) {
		theObj = mainTable . rows[i] . cells[j];
		theObj.onmouseover = handled;
/*		if(i==0||i==mainTable.rows.length-1||j==0||j==mainTable.rows[1].cells.length-1) {
			theObj.className="over";
			} else {
				theObj.onmouseover = handled;
				} */
	}
}
