// gallery 04 - prices
start = 0;

var guide = {
	
	makeSlideShows: function() {
		
		new SimpleImageSlideShow({		
		  startIndex: start,   
		  imgUrls: ['../img/photo/04/full/img-01.jpg','../img/photo/04/full/img-02.jpg','../img/photo/04/full/img-03.jpg','../img/photo/04/full/img-04.jpg'],
		  imgTexts:['Bar do Gomes – one of Santa Teresa and Rio de Janeiro’s best loved bars','The local samba school on parade during carnival','The Niemeyer centre on the Niteroi Peninsula, Rio de Janeiro state','Maracana stadium, Greater Rio de Janeiro'],
		  container: 'screenShotImgs',
		  currentIndexContainer: 'imgNow',
		  maxContainer: 'imgMax',
		  nextLink: 'nextImg',
		  prevLink: 'prevImg'
		  
		});
	},
	init: function(){
		this.makeSlideShows();
	},
	startImage: function() {
		alert('from startimage');   // ac debug
		
	}
	
};

window.onDomReady(function(){
	guide.init();
});

//window.onDomReady(guide.init.bind(guide));

function changeimage(which) {
	//alert('as');
	start = which-1;  // accounts for array
	guide.init();
}

function actest(which) {
	document.getElementById('caption').innerHTML = which;  // this is function to change text - tt works
}

