nfrankus, the css to change the text color of the title when you hover could be:
.infobox_title:hover {
color:#d57d2d; /* or whatever color you want it to change to */
}
Basically, find the class of the object you want to set, add :hover and set the color property.