<!-- flipbook ctrl -->

album = new Image

book_pages = new Array("images/album/Circolo-Trentino.jpg",
"images/album/95anni1.jpg", "images/album/95anni2.jpg",
"images/album/95anni3.jpg", "images/album/95anni4.jpg", "images/album/95anni5.jpg",
"images/album/Giannini1.jpg", "images/album/Giannini2.jpg",
"images/album/Danny1.jpg", "images/album/Danny2.jpg",
"images/album/GPiccioni.jpg", "images/album/PatronsBoard.jpg",
"images/album/Patrons.jpg", "images/album/Daniel-McVicar.jpg",
"images/album/Katzenberg.jpg",
"images/album/Laifa-Borrelli-Piersanti.jpg", "images/album/Mita-Medici.jpg",
"images/album/Pellegrini1.jpg", "images/album/Pellegrini2.jpg",
"images/album/Spirit.jpg", "images/album/Filippo-Ascione.jpg",
"images/album/Palm-Spring-Film-Festival.jpg", "images/album/Aldo-Degaudenz.jpg"
)
current_page = 0
page_num = book_pages.length - 1

function chg_page(direction)
{
	if(document.images) {
		current_page += direction;
		if(current_page>page_num) {
			current_page=0
		}
		else if(current_page<0) {
			current_page=page_num
		}
		document.album.src=book_pages[current_page]
	}
}

function changeText(element) {
	if (element.hasChildNodes())
		element.firstChild.nodeValue = (current_page+1) + " of " + book_pages.length;
	else
	element.appendChild(document.createTextNode((current_page+1) + " of " + book_pages.length));
}

