Rollover links?

the menus on the left of
http://fixmysite.us/coronadoshores/
should have a rollover effect, but can I also give the effect to the spans?

where are you putting your :hover in your CSS

you could do this two ways:

a:hover + span { your span:hover rules here;}

the better way would be:

li:hover a{… your a:hover rules here}
li:hover span{… your span:hover rules here}

hope that helps

xthx