function hover(mode, object) {
	object = document.getElementById(object);
	if(mode) {
		object.style.backgroundColor = "#EEE";
	} else {
		object.style.backgroundColor = "#FFF";
	}
}