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