Ext.onReady(function(){
		var step = window.step || 0;
		var image_dir = "images/slideshows/one_sweet_ride/";
		
		var images = new Array("img01.jpg", "img02.jpg", "img03.jpg", "img04.jpg", "img05.jpg", "img06.jpg", "img07.jpg", "img08.jpg", "img09.jpg", "img10.jpg", "img12.jpg", "img11.jpg");

		var alts = new Array(	"", "", "", "", "", "", "", "", "", "", "", "");


		var descriptions = new Array(	"<p style='text-align:center;'>Arsenic &amp; Old Lace Bed and Breakfast Inn <br/> <a href='http://www.eurekaspringsromancebb.com' target='_blank'>www.eurekaspringsromancebb.com</a>, 800-243-5223</p>",
										"<p style='text-align:center;'>Bridgeford House <br/> <a href='http://www.bridgefordhouse.com' target='_blank'>www.bridgefordhouse.com</a>, 888-567-2422</p>",
										"<p style='text-align:center;'>Crescent Cottage Inn <br/> <a href='http://www.1881crescentcottageinn.com' target='_blank'>www.1881crescentcottageinn.com</a>, 800-223-3246</p>",
										"<p style='text-align:center;'>Evening Shade Inn <br/> <a href='http://www.eveningshade.com' target='_blank'>www.eveningshade.com</a>, 888-992-1224</p>",
										"<p style='text-align:center;'>5 Ojo Inn Bed & Breakfast <br/> <a href='http://www.5ojo.com' target='_blank'>www.5ojo.com</a>, 800-656-6734</p>",
										"<p style='text-align:center;'>The Heartstone Inn <br/> <a href='http://www.heartstoneinn.com' target='_blank'>www.heartstoneinn.com</a>, 800-494-4921</p>",
										"<p style='text-align:center;'>Heart of the Hills Inn and Cottage <br/> <a href='http://www.heartofthehillsinn.com' target='_blank'>www.heartofthehillsinn.com</a>, 800-253-7468</p>",
										"<p style='text-align:center;'>Main Street Inn <br/> <a href='http://www.angelsonmainstreet.com' target='_blank'>www.angelsonmainstreet.com</a>, 888-624-6787</p>",
										"<p style='text-align:center;'>Pond Mountain Lodge & Resort <br/> <a href='http://www.pondmountainlodge.com' target='_blank'>www.pondmountainlodge.com</a>, 800-583-8043</p>",
										"<p style='text-align:center;'>Red Bud Manor <br/> <a href='http://www.redbudmanorinn.com' target='_blank'>www.redbudmanorinn.com</a>, 866-253-9649</p>",
										"<p style='text-align:center;'>Ridgeway House <br/> <a href='http://www.ridgewayhouse.com' target='_blank'>www.ridgewayhouse.com</a>, 800-477-6618</p>",
										"<p style='text-align:center;'>Rock Cottage Gardens <br/> <a href='http://www.rockcottagegardens.com' target='_blank'>www.rockcottagegardens.com</a>, 800-624-6646 </p>"
								
																	);	
			

	var vimg = Ext.getDom('viewer_img');
	var vtext = Ext.getDom('viewer_text');
	
	Ext.get('next').on('click', function(){
		Ext.get('ss_left').show();
		step = step + 1;
		if(step>images.length-1){
			step=0;
		}
		vimg.alt = alts[step];
		vimg.src = image_dir + images[step];
		vtext.innerHTML = descriptions[step];
		if(step==images.length-1){
			Ext.get('ss_right').hide();
		}
	});
	
	Ext.get('prev').on('click', function(){
		Ext.get('ss_right').show();
		step = step - 1;
		if(step<0){
			step=images.length-1;
		}
		vimg.alt = alts[step];
		vimg.src = image_dir + images[step];
		vtext.innerHTML = descriptions[step];
		if(step==0){
			Ext.get('ss_left').hide();
		}
																			 
	});
	
	//load intial photo and text
	vimg.alt = alts[step];
	vimg.src = image_dir + images[step];
	vtext.innerHTML = descriptions[step];
	
	//hide previous button initially
	Ext.get('ss_left').hide();
});	