You don't need to use each()
on a collection of jQuery elements. You can simply use the following code to apply the hover to all of the element_link
s:
element_link.hover( function(){$(this).siblings('img').animate({opacity:1}),250}, function(){$(this).siblings('img').animate({opacity:0.5}),250});