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