// JavaScript Document

<!--
/*
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]="../image/header/header_interior/header_interior1.jpg"
  myimages[2]="../image/header/header_interior/header_interior2.jpg"
  myimages[3]="../image/header/header_interior/header_interior3.jpg"
  myimages[4]="../image/header/header_interior/header_interior4.jpg"
  myimages[5]="../image/header/header_interior/header_interior5.jpg"
  myimages[6]="../image/header/header_interior/header_interior6.jpg"
  myimages[7]="../image/header/header_interior/header_interior7.jpg"
  myimages[8]="../image/header/header_interior/header_interior8.jpg"
  myimages[9]="../image/header/header_interior/header_interior9.jpg"
  myimages[10]="../image/header/header_interior/header_interior10.jpg"
  myimages[11]="../image/header/header_interior/header_interior11.jpg"
  myimages[12]="../image/header/header_interior/header_interior12.jpg"
  myimages[13]="../image/header/header_interior/header_interior13.jpg"
  myimages[14]="../image/header/header_interior/header_interior14.jpg"
  myimages[15]="../image/header/header_interior/header_interior15.jpg"
  myimages[16]="../image/header/header_interior/header_interior16.jpg"
  myimages[17]="../image/header/header_interior/header_interior17.jpg"
  var imagelinks=new Array()

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

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

  random_imglink()
//-->

