Please read notes on the code:
Code:
<script type="text/javascript">
var rangCur=[
/* Place all the url of the cursor in this array */
'graphics/cursor/romantic_1.cur',
'graphics/cursor/bible_1.cur'
];
window.onload=function() { rangRand=Math.floor(Math.random()*rangCur.length);
document.body.style.cursor='url('+rangCur[rangRand]+')';}
</script>