/*
 * carnivalDisplay.js
 * emm. 3.29.07
 */

var myimages=new Array()
var caption = new Array()

function preloadimages() {

	for (i=0, j=0 ; i < preloadimages.arguments.length; j++){
		myimages [j] = new Image()
		myimages [j].src = preloadimages.arguments[i++]
		myimages [j].width = preloadimages.arguments[i++]
		myimages [j].height = preloadimages.arguments[i++]

		caption [j] = preloadimages.arguments[i++]
	}
}

preloadimages(
"images/carnival/carnivalDSC_0254.jpg" , 571 , 340 , "Beautiful in blue at the BVI August festival." ,
"images/carnival/carnivalDSC_0241.jpg" , 571 , 340 , "Elaborate and stunning costumes are showcased at the August festival." ,
"images/carnival/kiddies-carnival24.jpg" ,570 , 330 , "Fantastic parades, with sun and fun defines the BVI carnival!" ,
"images/carnival/lady-costume-59-dsc-0130sm.jpg" , 244 , 350 , "Spectacular costumes.  Where?  August festival, BVI!" ,
"images/carnival/triniviewtec21.jpg" , 400 , 300 , "Join the celebration at the BVI August festival with Blue Odyssey Yachts!  A sailing vacation that will renew your spirit!" ,
"images/carnival/triniview-mm05137sm.jpg" , 263 , 350 , "Beautiful costumes adorn the paraders at the August festival." ,
"images/carnival/water-babies-25dsc-0087.jpg" , 571 , 340 , "Celebrating BVI Culture and Pagentry during the August festival with a parade during the August Festival." ,
"images/carnival/Photo004-1.jpg" , 218 , 350 , "Blue Odyssey Yachts will arrange your vacation of a lifetime!" )

function changeimage(towhatIndex){

	if (document && document.images) {
	document.images.photoLgImg.src = myimages[towhatIndex].src
	document.images.photoLgImg.width = myimages[towhatIndex].width
	document.images.photoLgImg.height = myimages[towhatIndex].height
	}
	document.getElementById('captionText').innerHTML = caption [towhatIndex] ;
}
