I\'ve googled around and found many scripts for hiding and showing DIV contents, as a toggle on button click.
But they are work using ID\'s.
I would like to
Using jQuery Selectors, you can find an ID by:
$("#id")
Changing that to select classes is trivial:
$(".className")
Without using jQuery its a little more non-trivial, but you can check this SO question for some help:
How to getElementByClass instead of GetElementById with Javascript?