// (c) copyright 2009 mauro gallo web creations

var sp4 = new Array();
sp4[0] = new Object();
sp4[0].tn = "pix/sponsor/lampo.jpg";
sp4[0].url = "http://www.lampo.it";
sp4[0].title = "Agenzia Lampo";
sp4[1] = new Object();
sp4[1].tn = "pix/sponsor/mazzon.jpg";
sp4[1].url = "http://www.marcomazzon.com";
sp4[1].title = "Marco Mazzon - Sound & Lights";

function changePix(tn, url, title, id) {
	var linkImg = document.getElementById(id);
	var img = document.getElementById(id + "Pix");
	if (linkImg && img) {
		linkImg.setAttribute("href", url);
		linkImg.setAttribute("title", title);
		img.setAttribute("src", tn);
		img.setAttribute("alt", title);
		//img.setAttribute("title", title);
		//img.setAttribute("height", "160");
	}
}

function fotoGallery(pixArray, pos, id) {
	eval("var photos = " + pixArray);
	if (pos >= photos.length)
		pos = 0;
	changePix(photos[pos].tn, photos[pos].url, photos[pos].title, id);
	pos++;
	setTimeout("fotoGallery('" + pixArray + "', " + pos + ", '" + id + "')", 8000);
}