I’m customizing forum software
- each page has 20 threads
- each thread is contained inside a div whose
class="threadpreview" - inside of each "threadpreview" divs are the LINKs to the full thread, and a 500 character preview of the thread right beneath the link
- when the page loads up, I have all the divs’ height set to 19px and overflow:hidden so that the preview of the thread is hidden and you can only see the LINK so the divs look "rolled up"
- when a user mouses over the LINK for that thread, the threadpreview div should "unroll" to it’s original height to show the content, and
onmouseoutit should roll back up to 19px to hide the content.
(I’m not using jQuery)
EDIT: If jQuery can do this easily I’ll give it a shot

Something like this should point you in the right direction:
You’ll have to use the appropriate event-attachment function (or switch between them).