
//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/wave4.jpg' border=0>"); return; 
}
 if (x > .94) 
{document.write("<img src='images/research/sunset.jpg' border=0 title=VIMS_photo>"); return; 
}
   if (x > .90) 
{document.write("<img src='images/birds.jpg' border=0>"); return; 
}
   if (x > .85) 
{document.write("<img src='images/fishing.jpg' border=0>"); return; 
}
  if (x > .80)   
{document.write("<img src='images/water.jpg' border=0>"); return; 
}
   if (x > .75) 
{document.write("<img src='images/research/rochellesworm.jpg' border=0 title=VIMS_photo>"); return; 
}
   if (x > .70) 
{document.write("<img src='images/sunrise.jpg' border=0>"); return; 
}
   if (x > .65) 
{document.write("<img src='images/research/horseshoecrab.jpg' border=0 title=VIMS_photo>"); return; 
}
   if (x > .60) 
{document.write("<img src='images/research/gearatdawn.jpg' border=0 title=VIMS_photo>"); return; 
}
  if (x > .55)   
{document.write("<img src='images/fog.jpg' border=0>"); return; 
 }
  if (x > .50)
{document.write("<img src='images/clouds.jpg' border=0>"); return; 
}
  if (x > .45)  
{document.write("<img src='images/research/freahwatermarsh.jpg' border=0 title=VIMS_photo>"); return;
} 
  if (x > .40)
{document.write("<img src='images/research/fishboar1.jpg' border=0 title=VIMS_photo>"); return; 
}

  if (x > .35)
{document.write("<img src='images/research/oysters.jpg' border=0 title=VIMS_photo>"); return; 
}

   if (x > .30) 
{document.write("<img src='images/research/eelgrass.jpg' border=0 title=VIMS_photo>"); return; 
}
  if (x > .25)   
{document.write("<img src='images/research/eagles.jpg' border=0 title=VIMS_photo>"); return; 
 }
  if (x > .20)
{document.write("<img src='images/research/crabs.jpg' border=0 title=VIMS_photo>"); return; 
}
  if (x > .15)  
{document.write("<img src='images/research/crabber.jpg' border=0 title=VIMS_photo>"); return;
} 
  if (x > .10)
{document.write("<img src='images/research/crab.jpg' border=0>"); return; 
}

  if (x > .05)
{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();

