Mirroring back the desired effect:
1. Start with all DIVS hidden.
2. Click a button, and that *related* DIV opens and all other open DIVs
close.

You might want to use the "each" function for this.  Untested code:
$("div.anirec_buttons img").each(function(i){
 $(".anirec_more").slideUp("slow"); //move them all back up
 $(this).siblings("div.anirec_more").slideDown(); //goes relative to the
one that was clicked and gets the brother div.

});

I see someone has posted to this message, so Ill stop.  Im so slow. :)
GMail is funny that way.  It pops up a little message saying, "Someone
already answered the question slow poke."  Hope this helps anyway.

Glen
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to