function atOnMouseOverColorGreen(o) {

	o.style.backgroundColor = 'B6D0BB';
	o.style.cursor = 'hand';
}

function atOnMouseOutColorGreen(o) {

	o.style.backgroundColor = 'F7F7F7';
}

function atOnMouseOverColorBlue(o) {

	o.style.backgroundColor = 'DFE6EF';
	o.style.cursor = 'hand';
}

function atOnMouseOutColorBlue(o) {

	o.style.backgroundColor = 'F7F7F7';
}

function atOnMouseOverColorRed(o) {

	o.style.backgroundColor = 'ECCECF';
	o.style.cursor = 'hand';
}

function atOnMouseOutColorRed(o) {

	o.style.backgroundColor = 'F7F7F7';
}

function atOnMouseOverColorOrange(o) {

	o.style.backgroundColor = 'FBD4AD';
	o.style.cursor = 'hand';
}

function atOnMouseOutColorOrange(o) {

	o.style.backgroundColor = 'F7F7F7';
}

function atOnMouseOverColorBrown(o) {

	o.style.backgroundColor = 'CBB49D';
	o.style.cursor = 'hand';
}

function atOnMouseOutColorBrown(o) {

	o.style.backgroundColor = 'F7F7F7';
}

function atOnMouseOverColorYellow(o) {

	o.style.backgroundColor = 'F5E7B7';
	o.style.cursor = 'hand';
}

function atOnMouseOutColorYellow(o) {

	o.style.backgroundColor = 'F7F7F7';
}

function atOnMouseOverColorPurple(o) {

	o.style.backgroundColor = 'CEB5CE';
	o.style.cursor = 'hand';
}

function atOnMouseOutColorPurple(o) {

	o.style.backgroundColor = 'F7F7F7';
}

function atOnMouseOverColorGray(o) {

	o.style.backgroundColor = 'D1D1D1';
	o.style.cursor = 'hand';
}

function atOnMouseOutColorGray(o) {

	o.style.backgroundColor = 'F7F7F7';
}