/*
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]="http://www.georgiafaithandfreedom.org/wp-content/themes/FFC/images/Capitol_Day_2.jpg"
  myimages[2]="http://www.georgiafaithandfreedom.org/wp-content/themes/FFC/images/Capitol_Interior_2.jpg"
  myimages[3]="http://www.georgiafaithandfreedom.org/wp-content/themes/FFC/images/Georgia_State_Park_2.jpg"
  myimages[4]="http://www.georgiafaithandfreedom.org/wp-content/themes/FFC/images/Savannah_Trees_2.jpg"

  //specify Alt text below
  var imagelinks=new Array()
  imagelinks[1]="Capitol Day"
  imagelinks[2]="Capitol Interior"
  imagelinks[3]="Georgia State Park"
  imagelinks[4]="Savannah Trees"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" alt="'+imagelinks[ry]+'" border=0></a>')
}

  random_imglink()
