function atOnMouseOverLight(o) {

	o.style.backgroundColor = 'FFFFFF';
	o.style.cursor = 'hand';
}

function atOnMouseOutLight(o) {

	o.style.backgroundColor = 'EDEDED';
}

function atOnMouseOverDark(o) {

	o.style.backgroundColor='FFFFFF';
	o.style.cursor='hand';
}

function atOnMouseOutDark(o) {

	o.style.backgroundColor='EDEDED';
}

function atOnMouseOverLght(o) {

	o.style.backgroundColor = 'C4D2D0';
	o.style.cursor = 'hand';
}

function atOnMouseOutLght(o) {

	o.style.backgroundColor = 'EDEDED';
}

