//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 > .8)
{document.write("<A HREF='index.html'><img alt='Latin Dating.us - Latino and Latina singles, online personals, local and international dating' src='images/group1.jpg' width='412' height='160' align='center' border='0' /></a>"); return;
}
  if (x > .6)
{document.write("<A HREF='index.html'><img alt='Latin Dating.us - Latino and Latina singles, online personals, local and international dating' src='images/group2.jpg' width=412 height=160 align=center border=0 /></a>"); return;
}
  if (x > .4)
{document.write("<A HREF='index.html'><img alt='Latin Dating.us - Latino and Latina singles, online personals, local and international dating' src='images/group3.jpg' width=412 height=160 align=center border=0 /></a>"); return;
}
  if (x > .2)
{document.write("<A HREF='index.html'><img alt='Latin Dating.us - Latino and Latina singles, online personals, local and international dating' src='images/group4.jpg' width=412 height=160 align=center border=0 /></a>"); return;
}
  if (x > 0)
{document.write("<A HREF='index.html'><img alt='Latin Dating.us - Latino and Latina singles, online personals, local and international dating' src='images/group5.jpg' width=412 height=160 align=center border=0 /></a>"); return;
}
}

RandomGraphics();

//End Script