Hide info when hover over image Beatslinger2
Design and Skin Customization
There's a bunch of different ways to do anything. If you like the way the elastic skin does it, yeah, grab its code and work it into your skin.
There's also another module that I've not used much lately but its purpose is to guide around and introduce parts of the page then the user clicks "ok" and the note bubble goes away, I forget what its called right now and cant seam to locate it.
Another way to do things is to add a class then use jquery to toggle it hidden and visible like
<a onclick="$('#the-hidden-thing').toggle();">click to toggle</a>
<div id="the-hiddne-thing">this stuff is hidden until the above is clicked on</div>