// random_inage.js
/*
Random Image Link Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
Updated: 00/04/25
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://toursa.com/banners_newsflash/banner_namibia_safari_adventures_0807.jpg"
myimages[2]="http://toursa.com/banners_newsflash/banner_kruger-safaris.jpg"
myimages[3]="http://toursa.com/banners_newsflash/banner_krugerpark_google_earth.jpg"
myimages[4]="http://toursa.com/banners_newsflash/banner_maps_sa.jpg"
myimages[5]="http://toursa.com/banners_newsflash/banner_addo_elephant.jpg"
myimages[6]="http://toursa.com/banners_newsflash/banner_accommodation_kruger.jpg"
myimages[7]="http://toursa.com/banners_newsflash/banner_cape_town.jpg"
myimages[8]="http://toursa.com/banners_newsflash/banner_garden_route.jpg"
myimages[9]="http://toursa.com/banners_newsflash/banner_tablemountain_trails.jpg"


//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.namibia-safari-adventures.com"
imagelinks[2]="http://www.kruger-safaris.com"
imagelinks[3]="http://www.accommodation-in-kruger-park.com/krugerpark_google_earth.htm"
imagelinks[4]="http://www.toursa.com/maps.htm"
imagelinks[5]="http://www.saparks.com/accommodation/addo_elephant_national_park.htm"
imagelinks[6]="http://www.accommodation-in-kruger-park.com"
imagelinks[7]="http://ct.toursa.com"
imagelinks[8]="http://gardenroute.toursa.com"
imagelinks[9]="http://www.saparks.com/table_mountain_national_park.aspx"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()
