// JavaScript Document

var theImagesLand2 = new Array()
 
theImagesLand2[0] = 'images/general/landscapeImage2_01.jpg'
theImagesLand2[1] = 'images/general/landscapeImage2_02.jpg'
theImagesLand2[2] = 'images/general/landscapeImage2_03.jpg'
theImagesLand2[3] = 'images/general/landscapeImage2_01.jpg' 
theImagesLand2[4] = 'images/general/landscapeImage2_05.jpg'
theImagesLand2[5] = 'images/general/landscapeImage2_06.jpg'
//theImagesLand2[6] = 'images/general/landscapeImage2_07.jpg'
var j = 0
var p = theImagesLand2.length;
var preBuffer = new Array()
 
for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImagesLand2[i]
}
var whichImageLand2 = Math.round(Math.random()*(p-1));
 
function showImageLand2(){
	//alert(whichImageLand2)
    if(whichImageLand2==0){
    document.write('<img src="'+theImagesLand2[whichImageLand2]+'" border=0 width=120 height=85></a>');
    }
    else if(whichImageLand2==1){
    document.write('<img src="'+theImagesLand2[whichImageLand2]+'" border=0 width=120 height=85></a>');
    }
    else if(whichImageLand2==2){
    document.write('<img src="'+theImagesLand2[whichImageLand2]+'" border=0 width=120 height=85></a>');
    }
   else if(whichImageLand2==3){
   document.write('<img src="'+theImagesLand2[whichImageLand2]+'" border=0 width=120 height=85></a>');
   }
	else if(whichImageLand2==4){
	document.write('<img src="'+theImagesLand2[whichImageLand2]+'" border=0 width=120 height=85></a>');
	}
	else if(whichImageLand2==5){
		document.write('<img src="'+theImagesLand2[whichImageLand2]+'" border=0 width=120 height=85></a>');
	 }
	// else if(whichImageLand2==6){
		//document.write('<img src="'+theImagesLand2[whichImageLand2]+'" border=0 width=120 height=85></a>');
	// }
 
}

