Newer browsers allow you to use the child (>) so you could do:
For browsers that don't accept the child selector (>) we can just use a JS fallback using jQuery 
Code:
#avatar:hover > #moodImg{ // id of avatar (when hovered) target id moodImg
//code here
}
