// JavaScript
var theImages = new Array()
	theImages[0] = 'images/SE_Asia_image.gif'
	theImages[1] = 'images/SE_Asia_map.gif'
	theImages[2] = 'images/SE_Asia_scene.jpg'
var theAltAttributes = new Array()
	theAltAttributes[0] = 'Satelite Image of South East Asia'
	theAltAttributes[1] = 'Map of South East Asia'
	theAltAttributes[2] = 'Farmer ploughing rice fields in Cambodia'
var theTitleAttributes = new Array()
	theTitleAttributes[0] = 'Satelite Image of South East Asia'
	theTitleAttributes[1] = 'Map of South East Asia'
	theTitleAttributes[2] = 'Farmer ploughing rice fields in Cambodia'
	var x= 0
	var y = theImages.length
	var z = Math.random();
	var whichImage = Math.round(z*(y-1));
	function imageSelect()
	{
		document.write('<img src="' + theImages[whichImage] + '" alt="' + theAltAttributes[whichImage] + '" title="' + theTitleAttributes[whichImage] + '" />');
		//document.write('<p>the random number is ' + z + '</p>');
		
	}                              
