That will work in IE8 if you are in Standards Mode.
It won't work if you're in Quirks Mode:
:hover doesn't work for non-a elements in IE6 and IE7/8 in Quirks Mode.
The fact that you're using tables for layout suggests to me that of all the possible causes, being in Quirks Mode is the answer here.
Read this long and detailed article:
http://hsivonen.iki.fi/doctype/
In short, you need to ensure you have a proper doctype as the very first line in your HTML, such as:
<!DOCTYPE html>
You can verify what I'm saying by opening the page in question in IE, and hitting F12 to open the Developer Tools. If for the "Document Mode" it says Quirks Mode, your CSS snippet will never work. After adding the doctype, it should say "IE8 Standards", and it should all work.
If it still doesn't work, then you have some other problem preventing IE using Standards Mode.