@ b) You could have something like this, I'm really bad at JavaScript but this should be simple enough, add this in the head section:
Code:
<script type="text/javascript">
function HidePrompt(id)
{
var instructions = document.getElementById(id)
instructions.style.display = "none"
}
</script>
Then you'd add this to the HTML:
Code:
<div id="prompt" style="display:block;">
Your prompt here, to tell users what to do
</div>
<img src="image1.jpg" onmouseover="HidePrompt(prompt);"/>
Hope this helps, this is probably a really long winded version of what I suppose is pretty simple and please feel free to put up a much shorter version of this ^^
Edit: Also, please fix your link above - it doesn't work at the moment.
Bookmarks