function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="featured/umnitsa-200x200.jpg"
  myimages[2]="featured/generalsofoctober-200x200.jpg"
  myimages[3]="featured/lethal-journey-200x200.jpg"
  myimages[4]="featured/christmas-clock-200x200.jpg"


  

  //specify corresponding links below 
  var imagelinks=new Array()
  imagelinks[1]="http://www.fictionwise.com/ebooks/b20766/Umnitsa/John-T-Cullen/?si=0"
imagelinks[2]="http://www.fictionwise.com/ebooks/b4651/The-Generals-of-October/John-T-Cullen/?si=0"
imagelinks[3]="http://www.fictionwise.com/ebooks/b93477/Lethal-Journey/John-T-Cullen/?si=0"
imagelinks[4]="http://www.fictionwise.com/ebooks/b28123/The-Christmas-Clock/John-T-Cullen/?si=0"
    


  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+'target="_resource"><img src="'+myimages[ry]+'" border="0" alt="If you do not see a picture here, press F5 to reload the page"></a>')
}

  random_imglink()
