<html>
<head>
<style type="text/css">
/* für den FF */
area {
cursor:help;
}
</style>
<script type="text/javascript">
// für den IE
function changeCursor(imgId, cursor) {
document.getElementById(imgId).style.cursor = cursor;
}
</script>
</head>
<body>
<img src="test.gif" width="375" height="525" usemap="#Map" id="testbild" />
<map name="Map" id="Map">
<area shape="rect" coords="0,0,100,100" href="index.html" onmouseover="changeCursor('testbild','help');" onmouseout="changeCursor('testbild','default');" />
</map>
</body>
</html> |