function RandomNumber() 
{
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;
}

function RandomGraphics() 
{
  var x = RandomNumber();


  if (x > .44) 
{document.write("<img border=0 src='http://zyoxxwheels.akiragraphics.com/images/index_topbanner.jpg' hspace=0 vspace=0 width=657 height=214>"); return; 
}
  if (x > .33) 
{document.write("<img border=0 src='http://zyoxxwheels.akiragraphics.com/images/index_topbanner2.jpg' hspace=0 vspace=0 width=657 height=214>"); return; 
}
  if (x > .22) 
{document.write("<img border=0 src='http://zyoxxwheels.akiragraphics.com/images/index_topbanner3.jpg' hspace=0 vspace=0 width=657 height=214>"); return; 
}
  if (x > .11) 
{document.write("<img border=0 src='http://zyoxxwheels.akiragraphics.com/images/index_topbanner4.jpg' hspace=0 vspace=0 width=657 height=214>"); return; 
}
  if (x > 0)   
{document.write("<img border=0 src='http://zyoxxwheels.akiragraphics.com/images/index_topbanner5.jpg' hspace=0 vspace=0 width=657 height=214>"); return; 
}
}

RandomGraphics();