// JavaScript Document
function agendaOver(that) {
  that.style.background='#6699CC';
  that.style.color='#FFFFFF';
  that.style.cursor='pointer';
}


function agendaOut(that) {
  that.style.background='';
  that.style.color='#4b4942';
}

function agendaOverEducation(that) {
  that.style.background='';
  that.style.color='';
  that.style.cursor='pointer';
}


function agendaGo(that) {
  document.location.href='calender.asp?id='+that;
}
