you can add the :hover pseudo tag to your stylesheet, such as:
#myList li.red:hover {
background-color: yellow;
}
If you want to have the background be yellow for any li, whether they be class red, green or otherwise, I think you can do:
#myList li:hover {
background-color: yellow;
}
I'm pretty sure as long as it appears later in the stylesheet than the others it will take precedence.