// JavaScript Document

function menuOn(where) {
 where.style.backgroundColor="#FCFBE0"; 
 where.style.cursor="hand";
}

function menuOff(where) {
 where.style.backgroundColor="#939EEC";
}