I have a table with 50 images in (10x5) all are faded, and when i hover over an image it brightens up to stand out. What i am struggling with is hovering over 1 image and having multiple images in the table stand out as well. (the related images i want to stand out are at random in the table)
The script i have so far is this;
<script type="text/javascript">
$(function() {
$('.imgOpa').each(function() {
$(this).hover(
function() {
$(this).stop().animate({ opacity: 1.0 }, 800);
},
function() {
$(this).stop().animate({ opacity: 0.5 }, 800);
})
});
});
</script>
If i could get any advice that would be great, even if it was to tell me that its impossible! Thanks