Since you have a break element following the image, you'll need to use nextAll and select the first DIV instead of simply using next
with a filter as in my original answer.
$('.imgOpenClose').click( function() {
$(this).nextAll('div:first').toggle();
});
tvanfosson
2009-05-24 12:13:47