
//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 > .98) 
{document.write("<img src='../images/education/inmarsh.jpg' border=0>"); return; 
}
   if (x > .95) 
{document.write("<img src='../images/education/smallswimmer.jpg' border=0>"); return; 
}

   if (x > .90) 
{document.write("<img src='../images/education/seining.jpg' border=0>"); return; 
}

   if (x > .84) 
{document.write("<img src='../images/education/inthewater.jpg' border=0>"); return; 
}

   if (x > .78) 
{document.write("<img src='../images/education/girls.jpg' border=0>"); return; 
}

 if (x > .68) 
{document.write("<img src='../images/research/sunset.jpg' border=0 title=VIMS_photo>"); return; 
}
   if (x > .64) 
{document.write("<img src='../images/education/rubberduckies.jpg' border=0 title=GLee_photo>"); return; 
}
   if (x > .61) 
{document.write("<img src='../images/fishing.jpg' border=0>"); return; 
}
  if (x > .57)   
{document.write("<img src='../images/water.jpg' border=0>"); return; 
}
   if (x > .53) 
{document.write("<img src='../images/research/rochellesworm.jpg' border=0 title=VIMS_photo>"); return; 
}
   if (x > .49) 
{document.write("<img src='../images/sunrise.jpg' border=0>"); return; 
}
   if (x > .45) 
{document.write("<img src='../images/research/horseshoecrab.jpg' border=0 title=VIMS_photo>"); return; 
}
   if (x > .41) 
{document.write("<img src='../images/research/gearatdawn.jpg' border=0 title=VIMS_photo>"); return; 
}
  if (x > .38)   
{document.write("<img src='../images/fog.jpg' border=0>"); return; 
 }
  if (x > .35)
{document.write("<img src='../images/clouds.jpg' border=0>"); return; 
}
  if (x > .31)  
{document.write("<img src='../images/research/freahwatermarsh.jpg' border=0 title=VIMS_photo>"); return;
} 
  if (x > .28)
{document.write("<img src='../images/research/fishboar1.jpg' border=0 title=VIMS_photo>"); return; 
}

  if (x > .25)
{document.write("<img src='../images/research/oysters.jpg' border=0 title=VIMS_photo>"); return; 
}

   if (x > .22) 
{document.write("<img src='../images/research/eelgrass.jpg' border=0 title=VIMS_photo>"); return; 
}
  if (x > .18)   
{document.write("<img src='../images/research/eagles.jpg' border=0 title=VIMS_photo>"); return; 
 }
  if (x > .15)
{document.write("<img src='../images/research/crabs.jpg' border=0 title=VIMS_photo>"); return; 
}
  if (x > .11)  
{document.write("<img src='../images/research/crabber.jpg' border=0 title=VIMS_photo>"); return;
} 
  if (x > .07)
{document.write("<img src='../images/research/crab.jpg' border=0>"); return; 
}

  if (x > .03)
{document.write("<img src='../images/research/bones.jpg' border=0 title=VIMS_photo>"); return; 
}

  if (x > .00)
{document.write("<img src='../images/research/sailboats.jpg' border=0 title=VIMS_photo>"); return; 
}

}

RandomGraphics();

