/* This code is Copyright (c) 1996 Nick Heinle and Athenia Associates, 
* all rights reserved. In order to receive the right to license this 
* code for use on your site the original code must be copied from the
* Web site webreference.com/javascript/. License is granted to user to 
* reuse this code on their own Web site if and only if this entire copyright
* notice is included. Code written by Nick Heinle of webreference.com.
*/

var imageArray1 = new makeArray('http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr01.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr02.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr03.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr04.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr05.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr06.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr07.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr08.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr09.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr10.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr11.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr12.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr13.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr14.gif', 'http://www.supermanhomepage.com/images/sh-layout/layout/top-right-cnr15.gif');

   function makeArray(){
   this.length = makeArray.arguments.length
   for (var i = 0; i < this.length; i++)
   this[i + 1] = makeArray.arguments[i]
   }

   function randNum (num) {
   var now = new Date();
   var rand = Math.round(num * Math.cos(now.getTime()));
   if (rand < 0) rand = - rand; if (rand == 0) rand++;
   return rand;
   }