I previously got this (useful!) answer about using .next() for same DIV blind effect.
However, I can't seem to get this simple function to work for more than one DIV at the same time:
$(document).ready(function(){
$("#closeButton").click(function (){
$(this).next().toggle("fast");
});
});
Any ideas? Thanks.