function hover(obj, val){
	if (val == 1) {
		obj.style.color = "#4b4b4b"
	}
	else {
		obj.style.color = ""
	}
}