function show ( index ) {
	SlideShow_showArray[0].goPage( index );
	modalChange( SlideShow_showArray[0].getCurrentPage().id ); 
}
function prev () {
	SlideShow_showArray[0].goPrevious();
	modalChange( SlideShow_showArray[0].getCurrentPage().id ); 
}
function next () {
	SlideShow_showArray[0].goNext();
	modalChange( SlideShow_showArray[0].getCurrentPage().id ); 
}
function showSlide_handler ( e ) {
	var img = getEventSource( e );
	if ( img ) {
		var slide = img.getAttribute("slide");
		show( slide );
	}
}
function setTipThumb_handler ( e ) {
	var img = getEventSource( e );
	img.alt = "clique para ampliar";
}

