I would suggest using the universal selector to apply the cursor property, here is a brief demonstration of how to do it:
Code:
<html>
<head>
<title> Universal Selector </title>
<style type='text/css'>
* {
cursor: auto;
}
</style>
</head>
<body>
<script language'JavaScript' type='text/javascript'>
document.styleSheets[0].rules[0].style.cursor = 'wait';
</script>
</body>
</html>
The universal selector will apply the style to *all* rendered elements.
This works fine in IE, but so far I haven't been able to get a working equivalent in Mozilla.
hth,
Rich
::::::::::::::::::::::::::::::::::::::::::
The Spicy Peanut Project
http://www.spicypeanut.net
::::::::::::::::::::::::::::::::::::::::::