// JavaScript Document

var myimages=new Array();
//specify random images below. You can have as many as you wish
myimages[0]="http://golf-royalty.com/images/index_images/shandon1.png";
myimages[1]="http://golf-royalty.com/images/index_images/royalbelfast1.png";
myimages[2]="http://golf-royalty.com/images/index_images/belvoir1.png"
myimages[3]="http://golf-royalty.com/images/index_images/rockmount1.png"
myimages[4]="http://golf-royalty.com/images/index_images/castlereagh1.png"
myimages[5]="http://golf-royalty.com/images/index_images/mountober1.png"
myimages[6]="http://golf-royalty.com/images/index_images/chezmcilroy.png"
myimages[7]="http://golf-royalty.com/images/index_images/montygets3.png"
myimages[8]="http://golf-royalty.com/images/index_images/murphy1.png"
myimages[9]="http://golf-royalty.com/images/index_images/daly1.png"
myimages[10]="http://golf-royalty.com/images/index_images/kirkistown1.png"
myimages[11]="http://golf-royalty.com/images/index_images/lowry1.png"
myimages[12]="http://golf-royalty.com/images/index_images/dalgleish1.png"
myimages[13]="http://golf-royalty.com/images/index_images/lowry2.png"


//specify corresponding links below
var imagelinks=new Array()
imagelinks[0]="http://golf-royalty.com/courses/shandon-park/"
imagelinks[1]="http://golf-royalty.com/courses/royal-belfast/"
imagelinks[2]="http://golf-royalty.com/courses/belvoir-park/"
imagelinks[3]="http://golf-royalty.com/courses/rockmount/"
imagelinks[4]="http://golf-royalty.com/courses/castlereagh-hills/"
imagelinks[5]="http://golf-royalty.com/courses/mount-ober/"
imagelinks[6]="http://golf-royalty.com/news/mcilroy-dreaming-of-home-run/"
imagelinks[7]="http://golf-royalty.com/news/monty-gets-three-ryder-cup-picks/"
imagelinks[8]="http://golf-royalty.com/news/murphy-frustrated-by-victory-wait/"
imagelinks[9]="http://golf-royalty.com/news/daly-braced-for-baltray-battle/"
imagelinks[10]="http://golf-royalty.com/courses/kirkistown-castle/"
imagelinks[11]="http://golf-royalty.com/news/lowry-completes-magical-journey/"
imagelinks[12]="http://golf-royalty.com/news/dalgleish-tells-lowry-to-listen/"
imagelinks[13]="http://golf-royalty.com/news/lowry-set-for-european-open/"


function random_imglink()
{
 var ry=Math.floor(Math.random()*myimages.length)
 
 document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" alt="" title=""></a>')
 
 myimages.splice(ry,1);
 imagelinks.splice(ry,1);
}

random_imglink();
random_imglink();
random_imglink();
random_imglink();
random_imglink();
random_imglink();
random_imglink();
random_imglink();