	var alt1  = new Array("Hibiscus", "National Arena - Bob Marley Statue",	"Lignum Vitae Plant",		"Devon House, Kingston",		"Dolphins Cove - St. Ann",			"Dolphins Cove - St. Ann",			"Faiths Pen - St. Ann",			"", 					"", 					"", 					"Old Spanish Town Square - St. Catherine",	"Old Spanish Town Square - St. Catherine", "Shaw Park Gardens", "Shaw Park Gardens", "Bob marley Statue",	"Dolphins Cove, St. Ann", 		"Dolphins Cove, St. Ann",		"Dolphins Cove, St. Ann", 		"Dolphins Cove, St. Ann",		"Dolphins Cove, St. Ann",		"Dolphins Cove, St. Ann", 		"Faith's Pen, St. Ann", "",	"Overhead view of Kingston", "Overhead View of Port Royal", 		"Old Spanish Town Square - St. Catherine", "Shaw Park Gardens",	"Jamaica's Capital - Kingston",	"Former 'Pirate City' Port Royal",	"Reach Falls, Portland", "New Kingston, Jamaica",	"Trident Castle, Portland",	"Blue Mountains",	"Blue Lagoon, Portland",	"Navy Island, Portland", "Devon House, Kingston",	"Beautiful Sunset in Jamaica",	"Famous Tourist spot, Ocho_Rios, St. Ann",	"Dunns River Falls, St. Ann",	"Shaw Park Beach, St. Ann");
	var imgs1 = new Array("images/hibiscus.jpg", "images/sm_BobMarley1.jpg", "images/lignumvitae.jpg",	"images/sm_DevonHouse03.jpg",	"images/sm_DolphinsCove03.jpg",		"images/sm_DolphinsCove04.jpg",		"images/sm_FaithsPen03.jpg",	"images/sm_Misc01.jpg",	"images/sm_Misc02.jpg",	"images/sm_Misc04.jpg", "images/sm_OldSPS03.jpg", 	"images/sm_OldSPS04.jpg", "images/sm_ShawPark03.jpg", 	"images/sm_ShawPark04.jpg", 		"images/sm_BobMarley2.jpg",		"images/sm_DolphinsCove05.jpg",	"images/sm_DolphinsCove06.jpg",	"images/sm_DolphinsCove07.jpg",	"images/sm_DolphinsCove08.jpg",	"images/sm_DolphinsCove10.jpg",	"images/sm_DolphinsCove11.jpg", "images/sm_FaithsPen04.jpg", "images/sm_Misc05.jpg", "images/sm_Misc07.jpg", "images/sm_Misc08.jpg", "images/sm_OldSPS05.jpg", "images/sm_ShawPark05.jpg","images/sm_Kingston04.jpg",	"images/sm_PortRoyal04.jpg",	"images/sm_ReachFalls01.jpg",	"images/sm_Kingston03.jpg",	"images/sm_Castle02.jpg",	"images/sm_BlueMountains01.jpg",	"images/sm_BlueLagoon04.jpg",	"images/sm_Navy_Island01.jpg",	"images/sm_DevonHouse04.jpg",	"images/sm_NegrilSunset01.jpg",	"images/sm_Ocho_Rios01.jpg",	"images/sm_DunnsRiver03.jpg",	"images/sm_ShawPark09.jpg");  
	var lnks1 = new Array("images/hibiscus.jpg", "images/sm_BobMarley1.jpg",  "images/lignumvitae.jpg",	"images/sm_DevonHouse03.jpg",	"images/sm_DolphinsCove03.jpg",		"images/sm_DolphinsCove04.jpg",		"images/sm_FaithsPen03.jpg",	"images/sm_Misc01.jpg",	"images/sm_Misc02.jpg",	"images/sm_Misc04.jpg", "images/sm_OldSPS03.jpg", 	"images/sm_OldSPS04.jpg", "images/sm_ShawPark03.jpg", 	"images/sm_ShawPark04.jpg", 		"images/sm_BobMarley2.jpg",		"images/sm_DolphinsCove05.jpg",	"images/sm_DolphinsCove06.jpg",	"images/sm_DolphinsCove07.jpg",	"images/sm_DolphinsCove08.jpg",	"images/sm_DolphinsCove10.jpg",	"images/sm_DolphinsCove11.jpg", "images/sm_FaithsPen04.jpg", "images/sm_Misc05.jpg", "images/sm_Misc07.jpg", "images/sm_Misc08.jpg", "images/sm_OldSPS05.jpg", "images/sm_ShawPark05.jpg", "images/sm_Kingston04.jpg",	"images/sm_PortRoyal04.jpg",	"images/sm_ReachFalls01.jpg",	"images/sm_Kingston03.jpg",	"images/sm_Castle02.jpg",	"images/sm_BlueMountains01.jpg",	"images/sm_BlueLagoon04.jpg",	"images/sm_Navy_Island01.jpg",	"images/sm_DevonHouse04.jpg",	"images/sm_NegrilSunset01.jpg",	"images/sm_Ocho_Rios01.jpg",	"images/sm_DunnsRiver03.jpg",	"images/sm_ShawPark09.jpg");
	var imgCt1 = 40;
	var currentAd1 = (Math.floor((Math.random()* imgCt1)));
	var iWait = 5; //seconds
		
	function cycle1(i) {
		currentAd1 += i;
				
		if (currentAd1 == imgCt1) { currentAd1 = 0; }		
		else if (currentAd1 < 0) { currentAd1 = imgCt1 - 1; }		
		document.adBanner1.src=imgs1[currentAd1];
		document.adBanner1.alt=alt1[currentAd1];
		document.cForm.sLabel.value=currentAd1.toString() + " - " + alt1[currentAd1];
		adLink1.href=lnks1[currentAd1];
//		setTimeout("cycle1()", iWait * 1000);
	}
