//alt
var thealts = new Array()

thealts[0] = 'Peggys Cove Nova Scotia'
thealts[1] = 'Spa Vacations'
thealts[2] = 'Civil war Cannon'
thealts[3] = 'Horseback Ride'
thealts[4] = 'Beaches Family Resorts'
thealts[5] = 'Vietnam Children'
thealts[6] = 'Childrens Tour'
thealts[7] = 'African Elephant'
thealts[8] = 'Offbeat Destinations'
thealts[9] = 'Shongololo Express, Southern Africa Safari Train'
thealts[10] = 'African Acacia Tree At Dusk'
thealts[11] = 'River Cruising'
thealts[12] = 'Vietnam Fruit Vendor'

var theImages = new Array()

theImages[0] = 'images/thumb/specalities1.jpg'
theImages[1] = 'images/thumb/specalities2.jpg'
theImages[2] = 'images/thumb/specalities3.jpg'
theImages[3] = 'images/thumb/specalities4.jpg'
theImages[4] = 'images/thumb/specalities5.jpg'
theImages[5] = 'images/thumb/specalities6.jpg'
theImages[6] = 'images/thumb/specalities7.jpg'
theImages[7] = 'images/thumb/specalities8.jpg'
theImages[8] = 'images/thumb/specalities9.jpg'
theImages[9] = 'images/thumb/specalities10.jpg'
theImages[10] = 'images/thumb/specalities11.jpg'
theImages[11] = 'images/thumb/specalities12.jpg'
theImages[12] = 'images/thumb/specalities13.jpg'
var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
//var whichalts = Math.round(Math.random()*(p-1));

function showImage(){
document.write('<img src="'+theImages[whichImage]+'" alt="'+thealts[whichImage]+'">');
}