you could list them all in a single statement:
Code:
#square00 a:hover, #square01 a:hover, #square02 a:hover,
a.class_00:hover, a.class_01:hover, a.class_02:hover{ color:#444; }
or, it may be simpler to create another class to set the bg color:
Code:
.bg{ color: #444; }
and apply it to all the elements you like.
In this (for example):#square00 a:hover, is #square00 the id for the <a> or for the <a>'s parent? If #square00 is the <a> itself, then you can simply write #square00:hover. Likewise, if .class_00 is only used on <a> elements, then you don't have to specify that the class belongs to the a element.
Bookmarks