var imgs=new Array();
var alts = new Array();
var descs=new Array();

var create=0;
function createSlide(path,title,description)
{
	imgs[create]=new Image();
	imgs[create].src=path;
	alts[create]=title;
	descs[create]=description;
	
	create++;
}

function preLoadSlides()
{
	createSlide("slides/building.png","Brand New Units","All new units offer a superior vacation option. All Lakefront.");
	createSlide("slides/deck.png","Decks With a View","Enjoy beautiful Table Rock Lake sunsets from a peaceful private deck.");
	createSlide("slides/dock.png","Dock on Table Rock Lake","The perfect place for a family lake vacation, complete with boat slips.");
	createSlide("slides/DSCN2318.png","Large Covered Decks","");
	createSlide("slides/DSCN2392.png","Lakefront Views From Decks","");
	createSlide("slides/DSCN2415.png","Large Covered Decks","");
	createSlide("slides/DSCN2439.png","Lakefront Views From Decks","");
	createSlide("slides/DSCN2441.png","Lakefront Views From Decks","");
	createSlide("slides/DSCN2443.png","Large Covered Decks","");
	createSlide("slides/DSCN2444.png","Open Living Rooms With Lake Front Views","");
	createSlide("slides/DSCN2445.png","Fully Equipped Kitchens","");
	createSlide("slides/DSCN2446.png","Open Living Rooms With Lake Front Views","");
	createSlide("slides/DSCN2447.png","Open Living Rooms With Lake Front Views","");
	createSlide("slides/DSCN2448.png","Spare Bathrooms With Double Sinks","");
	createSlide("slides/DSCN2449.png","Fully Equipped Kitchens","");
	createSlide("slides/DSCN2450.png","Spacious Spare Bedrooms","");
	createSlide("slides/DSCN2451.png","Spacious Spare Bedrooms","");
	createSlide("slides/DSCN2454.png","Large Open Floor Plans","");
	createSlide("slides/DSCN2455.png","Large Master Suites","");
	createSlide("slides/DSCN2457.png","Large Master Suites","");
	createSlide("slides/DSCN2459.png","Spare Bathrooms With Double Sinks","");
	createSlide("slides/DSCN2460.png","Jetted Tubs In Master Baths","");
}

/*
createSlide("slides/building.png","Brand New Units","All new units offer a superior vacation option.");
createSlide("slides/deck.png","Decks With a View","Enjoy beautiful Table Rock Lake sunsets from a peaceful deck.");
createSlide("slides/dock.png","Dock on Table Rock Lake","The perfect place for a family lake vacation, complete with boat slips.");
createSlide("slides/DSCN2318.png","Peaceful Decks","Relax and enjoy the the scerenity of the outdoors.");
createSlide("slides/DSCN2392.png","Just Feet From the Shore","Located right on the shore of Beautiful Table Rock Lake.");
createSlide("slides/DSCN2415.png","Relaxing Dining","Have dinner with the family on our quaint serene decks with dining funiture.");
createSlide("slides/DSCN2439.png","Distant Sunsets","Enjoy the inspiring sunsets over Branson's favorite lake.");
createSlide("slides/DSCN2441.png","Peaceful Cove","Located on the calm waters of one of Table Rock's coves.");
createSlide("slides/DSCN2443.png","Uniquely Decorated","Each unit decorated uniquely to suit a variety of preferences.");
createSlide("slides/DSCN2444.png","Spacious Living Quarters","Enough room for a family to vacation together, as a family.");
createSlide("slides/DSCN2445.png","Family Dinners","Forget eating on the run and dine together at one table in a home environment.");
createSlide("slides/DSCN2446.png","Homelike Living","Go on vacation without sacrificing the comforts of being at home.");
createSlide("slides/DSCN2447.png","Walk Out Decks","Table Rock Lake view is waiting just outside the living area.");
createSlide("slides/DSCN2448.png","Fully Furnished","Plenty of room for getting ready as you enjoy the features of Branson.");
createSlide("slides/DSCN2449.png","Dinner for 6?","Home cooked, family dinners on vacation. The best of both worlds.");
createSlide("slides/DSCN2450.png","Sleep Tight","Rest your head in our restful, comfortable bedrooms.");
createSlide("slides/DSCN2451.png","Multiple Bedrooms","Enough room for your family to enjoy the vacation and get a good night's rest every night.");
createSlide("slides/DSCN2454.png","Comfortable Living","Complete family living in our fully furnished resort condos waiting for you.");
createSlide("slides/DSCN2455.png","Multiple Bedrooms","Enough room for your family to enjoy the vacation and rest up every night.");
createSlide("slides/DSCN2457.png","Move In","Don't lose the comforts of home on your Branson vacation, stay at Vickery Resort.");
createSlide("slides/DSCN2459.png","Full Baths","Plenty of room for getting ready as you enjoy the features of Branson.");
createSlide("slides/DSCN2460.png","Top of Your Day","Icing on the cake in a comfortable jacuzzi tub, a relaxing finish to a fun filled day.");
*/

var current=create-1;

function nextSlide()
{
	if (id > 0)
		clearInterval(id);
	current=((current+1)%(imgs.length));
	if(window.XMLHttpRequest)
	{
		document.getElementById("slide0").src=imgs[current].src;
	}
	else
	{
		document.getElementById("slide0").style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src="+imgs[current].src+", sizingMethod=scale)";
	}
	document.getElementById('photoCaptionCell').innerHTML="<strong>-" + alts[current] + "-</strong><br/>" + descs[current];
}

var id=0;

window.onload=function () {preLoadSlides(); id=setInterval("nextSlide()",500);setInterval("nextSlide()",5000)};
