<!--
/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="banner_image/TSGButton1.gif"
  myimages[2]="banner_image/TSGButton2.gif"
  myimages[3]="banner_image/TSGButton3.gif"
  myimages[4]="banner_image/TSGButton4.gif"
  myimages[5]="banner_image/TSGButton5.gif"
  myimages[6]="banner_image/TSGButton6.gif"
  myimages[7]="banner_image/TFLbannersmall.jpg"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.nycapital.shepherdsguide.com"
  imagelinks[2]="http://www.nycapital.shepherdsguide.com"
  imagelinks[3]="http://www.nycapital.shepherdsguide.com"
  imagelinks[4]="http://www.nycapital.shepherdsguide.com"
  imagelinks[5]="http://www.nycapital.shepherdsguide.com"
  imagelinks[6]="http://www.nycapital.shepherdsguide.com"
  imagelinks[7]="http://www.truthforlife.org/free"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+'" target="_blank"><img src="'+myimages[ry]+'" border=0></a>')
}

  random_imglink()
//-->