function showSlide ( index ) {
	SlideShow_showArray[0].goPage( index );
	modalChange( SlideShow_showArray[0].getCurrentPage() ); 
}
function prevSlide () {
	SlideShow_showArray[0].goPrevious();
	modalChange( SlideShow_showArray[0].getCurrentPage() ); 
}
function nextSlide () {
	SlideShow_showArray[0].goNext();
	modalChange( SlideShow_showArray[0].getCurrentPage() ); 
}
function showSlide_handler ( e ) {
	var img = getEventSource( e );
	if ( img ) {
		var slide = img.getAttribute("slide");
		showSlide( slide );
	}
}
function setTipThumb_handler ( e ) {
	var img = getEventSource( e );
	img.title = "clique para ampliar";
}

