// JavaScript Document
var currentArrow = "arrowSubject";
function rollon3(itemName) {
	if (itemName.tagName == "TR") {
		itemName.style.backgroundColor = "#ffffff";
	} else if (itemName.tagName == "TH") {
		if ((window.event.toElement != null) && (window.event.fromElement != null)) {
			if ((window.event.fromElement.id != currentArrow) && (window.event.toElement.id != currentArrow)) {
				itemName.style.cursor = "hand";
				itemName.style.borderTopColor = "BUTTONHIGHLIGHT"
				itemName.style.borderLeftColor = "BUTTONHIGHLIGHT"
			}
		} else {
			itemName.style.cursor = "hand";
			itemName.style.borderTopColor = "BUTTONHIGHLIGHT"
			itemName.style.borderLeftColor = "BUTTONHIGHLIGHT"
		}
	}
	window.event.cancelBubble = true;
}
function rolloff3(itemName) {
	if (itemName.tagName == "TR") {
		itemName.style.backgroundColor = "";
	} else if (itemName.tagName == "TH") {
		if ((window.event.toElement != null) && (window.event.fromElement != null)) {
			if ((window.event.toElement.id != currentArrow) && (window.event.fromElement.id != currentArrow)) {
				itemName.style.cursor = "auto";
				itemName.style.borderTopColor = "BUTTONFACE"
				itemName.style.borderLeftColor = "BUTTONFACE"
			}
		} else {
			itemName.style.cursor = "auto";
			itemName.style.borderTopColor = "BUTTONFACE"
			itemName.style.borderLeftColor = "BUTTONFACE"
		}
	}
	window.event.cancelBubble = true;
}


