<script type="text/javascript"> var urls = new Array(); var random = Math.floor(Math.random()*urls.length); window.location = urls[random]; </script> |
HERE'S THE CODE
<script type="text/javascript">
var urls = new Array();
urls[0] = "Tom.html";
urls[1] = "Jeff.html";
urls[2] = "Dad.html";
urls[3] = "Mole.html";
urls[4] = "Wendy.html";
urls[5] = "Mom.html";
urls[6] = "Sally.html";
urls[7] = "Steve.html";
var random = Math.floor(Math.random()*urls.length);
window.location = urls[random];
</script>