// JavaScript Document

// HOVER BACKGROUND - change div background colour on mouseOver

var mouseover_color   = '#a0c804';
var mouseout_color    = '#e3e8e8';

var mouseover_colorTXT   = '#333333';
var mouseout_colorTXT    = '#525051';

function mouseover(x)
 {
  if(document.getElementById||(document.all && !(document.getElementById)))
   {
    x.style.backgroundColor=mouseover_color;
		x.style.Color=mouseover_colorTXT;
   }
 }

function mouseout(x)
 {
 if(document.getElementById||(document.all && !(document.getElementById)))
  {
   x.style.backgroundColor=mouseout_color;
	 x.style.Color=mouseout_colorTXT;
  }
 }