<!-- written by The Omega
//   http://members.xoom.com/the_omega/
//   the_omega@geocities.com
// You must leave these comments in to use the script
//  (hey, I wrote it. Let me have a little credit!)
// put info for randomly selected banners here, as in the examples
gfx0="images/banner0.jpg";
gfx1="images/banner1.jpg";
gfx2="images/banner2.jpg";
gfx3="images/banner3.jpg";
gfx4="images/banner4.jpg";
gfx5="images/banner5.jpg";
gfx6="images/banner6.jpg";
len=7;  // change to equal number of banners
today=new Date();
today=Math.round(today.getTime()/10);
rnd=today%len;
document.write('<IMG SRC="'+eval("gfx"+rnd)+'"');
//-->