function Photo (int_index,obj_parent,str_fichier, str_titre, str_chapeau, str_texte, str_hauteur){

/******************************************/
/**********DECLARATION DE PROPRIETE********/
/******************************************/
	this.index = int_index;	
	this._parent = obj_parent;
	this.fichier = str_fichier;	
	this.titre = str_titre;
	this.chapeau = str_chapeau;
	this.texte = str_texte;
	this.hauteur = str_hauteur;
}