I never gave anything back to the forum, so I decided to give this. It's just something fun, no real purpose. It can be bent to fit other uses, being a help box thingy is just one way of using it. Basically, when you put your mouse over the box, the cursor blinks between the normal and the help cursor. Whatever, here it is:
Code:
<html>
<head>
<script type="text/javascript">
<!--
function start()
{
var time = new Date();
var second = time.getSeconds();
second%2 == 0?document.body.style.cursor="help":document.body.style.cursor="default";
timer = setTimeout("start()",1000);
}
function stop()
{
clearTimeout(timer);
document.body.style.cursor="default"
}
-->
</script>
</head>
<body>
<div style="width: 100px; height: 100px; border: 1px solid black;" onMouseover="start()" onMouseout="stop()">
Help
</div>
</body>
</html>
edit: I finally managed to have it hosted. Here is a link:
link