// JavaScript Document
function mouse2black (chgobj){
	chgobj.style.background='#000000';
	chgobj.style.color='#FFFFFF';
}

function mouse2blue (chgobj){
	chgobj.style.background='#054D9F';
	chgobj.style.color='#FFFFFF';
}

function mouse2grey (chgobj){
	chgobj.style.background='#888888';
	chgobj.style.color='#FFFFFF';
}

function mouse2red (chgobj){
	chgobj.style.background='#FF0000';
	chgobj.style.color='#FFFFFF';
}

function mouse2green (chgobj){
	chgobj.style.background='#006600';
	chgobj.style.color='#000000';
}

function mouse2yellow (chgobj){
	chgobj.style.background='#FFFF00';
	chgobj.style.color='#000000';
}

function mouse2white (chgobj){
	chgobj.style.background='#FFFFFF';
	chgobj.style.color='#054D9F';
}
