// HIGHLIGHT DIVS
// Works: IE4+, NS6+, Opera

function highLight(thisId,thisNum) {
    if (thisNum == 1) {
        ofVal = "#768DA1";
        onVal = "#8398aa";
    }
    thisId.style.background = onVal;
	thisId.onmouseout = function() {
		thisId.style.background = ofVal;
	}
}