// HIGHLIGHT DIVS
// Works: IE4+, NS6+, Opera

function highLight(thisId,thisNum) {
    if (thisNum == 1) {
        ofVal = "#EAEAE2";
        onVal = "#DBDBCA";
    } else if (thisNum == 2) {
        ofVal = "#616552";
        onVal = "#FFFFFF";
    } else if (thisNum == 3) {
        ofVal = "#FFFFFF";
        onVal = "#EEEDE1";
    } else if (thisNum == 4) {
        ofVal = "#DFDFD2";
        onVal = "#CACAB4";
    } else if (thisNum == 5) {
        ofVal = "#EAEAE2";
        onVal = "#CACAB4";
    } else if (thisNum == 6) {
        ofVal = "transparent";
        onVal = "#DBDBCA";
    }
    thisId.style.background = onVal;
	thisId.onmouseout = function() {
		thisId.style.background = ofVal;
	}
}
