//Modified by Coffeecup Software

//produces a randomly generated graphic to use as ad or cool effect

function RandomNumber()
{
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;
}

function RandomGraphics()
{
  var x = RandomNumber();

  if (x > .5)
{document.write("<A HREF='index.html'><img alt='Detroit singles' src='images/side1.GIF' width='255' height='330' align='center' border='0' /></a>"); return;
}
  if (x > 0)
{document.write("<A HREF='index.html'><img alt='Detroit singles' src='images/side2.gif' width='255' height='330' align='center' border='0' /></a>"); return;
}
}

RandomGraphics();

//End Script