<!-- This script works on flipping colours on the text links ->
function getonme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "onme1";
}
if (el.getAttribute("litUp2") != null) {
el.className = "onme2";
}
}
function getoffme() {
el = event.srcElement ;
if (el.getAttribute("litUp1") != null) {
el.className = "offme";
}
if (el.getAttribute("litUp2") != null) {
el.className = "offme2";
}
}
document.onmouseover = getonme;
document.onmouseout = getoffme ;
//-->