
/***************************** INSTRUCTIONS *********************************

This is the javascript file that lets you implement
the mini-calendar rollover effect and the event details
window.
To customize the colours for your rollover, edit the
variables below.

****************************************************************************/

/************************** Edit the Following Only *****************************/

// the color all cells change to when the mouse rolls over it
var on='#FFFFFF';

// the color the date cell changes to when the mouse rolls off
var dateoff='#EFF0F0';

// the color the today date cell changes to when the mouse rolls off
var todayoff = 'B2D4F4';

// the color the event highlighted cell changes to when the mouse rolls off
var eventoff = 'C0CFE8';

/***************************** Edit the Above Only ********************************/

