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