function Foto(){	this.path=null;	this.user =null;	this.stagione = null;	this.squadra=null;	this.calciatore=null;	this.data=null;	this.campionato=null;	this.partita=null;}Foto.prototype.toString=function(sep){	if(sep==null || sep.length ==0) sep= " - ";	return	'path: ' + this.path + sep + 				'user: ' + this.user + sep + 				'stagione' + this.stagione + sep +				'squadra: ' + this.squadra +sep +				'calciatore: ' + this.calciatore + sep +				'data: ' + this.data + sep + 				'campionato: '+ this.campionato +sep +				'partita: ' + this.partita;};Foto.prototype.getSquadra=function(){	var result=this.squadra;	if(result==null) return '';	return result; }Foto.prototype.getUser=function(){	var result=this.user;	if(result==null) return '';	return result; }Foto.prototype.getCalciatore=function(){	var result=this.calciatore;	if(result==null) return '';	return result; }function createFoto(argPath, argUser, argStagione, argSquadra, argCalciatore, argData, argCampionato, argPartita){	var foto = new Foto();	foto.path=argPath;	foto.user =argUser;	foto.stagione = argStagione;	foto.squadra=argSquadra;	foto.calciatore=argCalciatore;	foto.data=argData;	foto.campionato=argCampionato;	foto.partita=argPartita;	return foto;	}/*var copertina = new Array();copertina.push(createFoto('PLjnGMLPC237oEnEZ2Qf.jpg', 'mirkogalasso', '2007', 'Olanda', 'Van Nistelrooy', '13/06/2008', 'Euro 2008', 'Olanda Francia'));copertina.push(createFoto('FvLppuPmpKngsJ9WGDYo.jpg', 'footpro', '2007', 'Verona', 'Mirko Galasso', '30/04/2008', 'Euro 2008', 'Olanda Francia'));copertina.push(createFoto('1A9CC12571FC0077E257.jpg', 'calciatoricom', '2006', 'Torino', 'Roberto Stellone', '30/04/2008', 'Serie A', 'Udinese Torino'));copertina.push(createFoto('9CVMFu8saCRuR33kseTd.jpg', 'mirkogalasso', '2007', 'Verona', 'Mirko Galasso', '30/04/2008', 'Euro 2008', 'Olanda Francia'));copertina.push(createFoto('5627C1256AC100733703.jpg', 'calciatoricom', '2001', 'Milan', 'Filippo Inzaghi', '20/02/2002', 'Euro 2008', 'Milan Juventus'));*/
