<!-- Begin JS Script -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
var theLinks = new Array()
var theCaption = new Array()
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'papers/p2.jpg'
theImages[1] = 'papers/kb1.jpg'
theImages[2] = 'papers/jya2.jpg'
theImages[3] = 'papers/tm1b.jpg'
theImages[4] = 'papers/fieldcamp.jpg'
theLinks[0] = 'papers/2005GL025019.pdf'
theLinks[1] = 'papers/kb.pdf'
theLinks[2] = 'papers/2004WR003717.pdf'
theLinks[3] = 'tm1.html'
theLinks[4] = 'Fieldcamp.html'
theCaption[0] = 'From: Linking Riparian Dynamics and Groundwater: An Ecohydrologic Approach to Modeling Groundwater and Riparian Vegetation'
theCaption[1] = 'From: Linking Riparian Dynamics and Groundwater: An Ecohydrologic Approach to Modeling Groundwater and Riparian Vegetation'
theCaption[2] = 'From: Traditional analysis of aquifer tests: Comparing apples to oranges?'
theCaption[3] = 'From: Biogeochemical Budgets in a Mediterranean Catchment with High Rates of Atmospheric N Deposition - Importance of Scale and Temporal Asynchrony'
theCaption[4] = 'Field Camp 2004'
// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<a href="'+theLinks[whichImage]+'"><img src="'+theImages[whichImage]+'">');
}
function showCaption(){
document.write('<a href="'+theLinks[whichImage]+'"> '+theCaption[whichImage]+'');
}
//  End -->
