var curSlide = 0;
var slideArray = new Array();
	slideArray[0] = new Array("Kahana Village features both 2 and 3 Bedroom Oceanfront beach houses located in tropical, sunny West Maui. Kahana Village is situated on a picturesque reef protected cove, complete with a beautiful white sand beach that is protected from high surf by our reef. A couple miles to the north of us is scenic Napili Bay, and 3 miles to the south of us is the always popular Kaanapali Beach.", "../images/about/kahana-village-beach.jpg");
	slideArray[1] = new Array("This beautifully maintained complex includes 42, individually owned low rise units which echo the early missionary style of architecture and are nestled over 3&frac12; acres, completely landscaped with palm trees, colorful tropical flowers, fruit trees and lush green lawns. We feature a 40 foot round heated pool, Jacuzzi and 4 gas-grill BBQ&rsquo;s for the use of our guests.", "../images/about/pool-and-units.jpg");
	slideArray[2] = new Array("Each individually owned beach house is wonderfully spacious, with 2 Bedroom 2 Bath Units enjoying 1200 square feet of living space and all located on the 2nd level. The 3 Bedroom 2 Bath Units enjoy just over 1700 square feet of living space and are all located on the ground level.", "../images/about/unit30.jpg");
	slideArray[3] = new Array("Our elegantly furnished accommodations boast all you need for carefree island living, including fully equipped kitchens and a washer and dryer in each Unit. <a href=\"../beachhouses/index.htm#amenities\">Click here</a> to learn more about what&rsquo;s included in each Unit.", "../images/about/unit01.jpg");
	slideArray[4] = new Array("Ocean Front lounge chairs allow you to comfortably watch the whales play while watching the sunset between the islands of Lanai and Molokai.", "../images/about/chaise-lounge-chairs.jpg");
	slideArray[5] = new Array("Every Wednesday evening, Kahana Village guests are invited down to our Ocean Front Cabana to enjoy Live Hawaiian Music, Mai Tai&rsquo;s, fresh pineapple and snacks, as well as a chance to win Kahana Village merchandise, all complimentary to our guests!", "../images/about/mai-tai-shot.jpg");
	slideArray[6] = new Array("Kahana Village&rsquo;s private beach front location makes it one of the most popular places on Maui to hold weddings and special events. <a href=\"../aboutus/specialevents.htm\">Click here</a> to learn more.", "../images/about/kahana-village-wedding.jpg");
	slideArray[7] = new Array("Kahana Village truly enjoys one of the most beautiful locations on earth.  Come and see why so many people choose Kahana Village for their vacation destination time and time again.", "../images/about/kahana-village-sunset.jpg");


function prevSlide() {
	if (curSlide == 0) {
		return;
	}
	curSlide--;
	setCurSlide();
}

function nextSlide() {
	if (curSlide == 7) {
		return;
	}
	curSlide++;
	setCurSlide();
}

function setCurSlide() {
//	$("img#curSlideImg").attr("src", slideArray[curSlide][1]);
	$("img#curSlideImg").fadeOut("fast", loadCurSlide);
	$("#curCaption").empty().append(slideArray[curSlide][0]);
	$("img.sthumb").removeClass("scurThumb");
	$("img#sthumb" + curSlide).addClass("scurThumb");
}

function loadCurSlide() {
	$("img#curSlideImg").attr("src", slideArray[curSlide][1]);
	$("img#curSlideImg").fadeIn("fast");
}

var preloadimages = new Array();

for (var i = 0; i < slideArray.length; i++) {
	preloadimages[i] = new Image();
	preloadimages[i].src = slideArray[i][1];
}

$(document).ready(function() {
	
	$("a#sthumblink0").click(function(event) {
		event.preventDefault();
		if (curSlide == 0) return;
		curSlide = 0;
		setCurSlide();
	});
	$("a#sthumblink1").click(function(event) {
		event.preventDefault();
		if (curSlide == 1) return;
		curSlide = 1;
		setCurSlide();
	});
	$("a#sthumblink2").click(function(event) {
		event.preventDefault();
		if (curSlide == 2) return;
		curSlide = 2;
		setCurSlide();
	});
	$("a#sthumblink3").click(function(event) {
		event.preventDefault();
		if (curSlide == 3) return;
		curSlide = 3;
		setCurSlide();
	});
	$("a#sthumblink4").click(function(event) {
		event.preventDefault();
		if (curSlide == 4) return;
		curSlide = 4;
		setCurSlide();
	});
	$("a#sthumblink5").click(function(event) {
		event.preventDefault();
		if (curSlide == 5) return;
		curSlide = 5;
		setCurSlide();
	});
	$("a#sthumblink6").click(function(event) {
		event.preventDefault();
		if (curSlide == 6) return;
		curSlide = 6;
		setCurSlide();
	});
	$("a#sthumblink7").click(function(event) {
		event.preventDefault();
		if (curSlide == 7) return;
		curSlide = 7;
		setCurSlide();
	});
});

