// JavaScript Document
function mouseOver(element)
{
  element.style.backgroundColor ="#d8defe";
}
function mouseDown(element)
{
  element.style.backgroundColor ="#8590da";
}
function mouseOut(element)
{
  element.style.backgroundColor ="transparent";
}
function mouseUp(element)
{
  element.style.backgroundColor ="#d8defe";
}
