function atOnMouseOverLight(o) {

	o.style.backgroundColor = 'E1EAFD';
	o.style.cursor = 'hand';
}

function atOnMouseOutLight(o) {

	o.style.backgroundColor = 'FFFFFF';
}

function atOnMouseOverDark(o) {

	o.style.backgroundColor='FFFFFF';
	o.style.cursor='hand';
}

function atOnMouseOutDark(o) {

	o.style.backgroundColor='FFFFFF';
}
