Hi krayziepjf,
something like this?
example
--
I used this two styles for switching on MouseOver
Code:
IMG.thumbnail {
border: 1px solid #CCCCCC;
margin-left: 30px;
margin-bottom: 30px;
float: left;
filter: Alpha(Opacity=10, Style=0);
-moz-opacity: 10%;
opacity: 10%;
}
IMG.thumbnail_on {
cursor : hand;
border: 1px solid #000;
margin-left: 30px;
margin-bottom: 30px;
float: left;
filter: Alpha(Opacity=100, Style=0);
-moz-opacity: 100%;
opacity: 1;
}
And some P7extension to make the switch possible..(see source.
This works fine, but is not exactly what you mean.. 
Maybe you could try to SNAP another DIV on top of the image-box with a semi-transparent bg-image, with your desired color and name it "style_off" and then onMouseOver switch the style on this extra DIV to "style_on" where you put a complete transparent image as background.
thats all i know (for now)
Bookmarks