// JavaScript Document

// Button on mouseover Color Change
function goLite(ThisID)
{
   document.getElementById(ThisID).style.color = "#000000";
   document.getElementById(ThisID).style.backgroundColor = "#9eae4d";
}

function goDim(ThisID)
{
   document.getElementById(ThisID).style.color = "#ffffff";
   document.getElementById(ThisID).style.backgroundColor = "#7a8e15";
}
