


function random_imglink(){

  //counter
  var x = 1;
  
  //specify corresponding images below
  var myimages=new Array();
  
  //For Loop for all the images
  for(x = 1; x <= 28; x++)
  {
  	myimages[x]='../vet_common/images/wildlife/' + x + '.jpg';
  }
  
  //variable to choose a random number from 0 to the maximum amount of images
  var ry=Math.floor(Math.random()*myimages.length);

  
  //To write the random image and link into the table of the template 
  document.write('<a href='+'"#"'+' title='+'"Wildlife Medicine Images"'+'><img src="'+myimages[ry]+'" border=0 alt='+'"Wildlife Medicine Images"'+' width=166 height=250 align=right></a>')
}

  //Function call
  random_imglink();