<!--
// --------------------------------------------------------------------------------
// --------------------------------------------------------------------------------
// Class PortfolioItem
// --------------------------------------------------------------------------------
// --------------------------------------------------------------------------------

// --------------------------------------------------------------------------------
// --------------------------------------------------------------------------------

//
// Constructor
//
function PortfolioItem( 
	/*string     */ uriThumb, 
	/*string     */ uriImage, 
	/*string     */ uriLargeImage,
	/*string	 */ model,
	/*string     */ photographer, 
	/*Date object*/ date, 
	/*int        */ description,
	/*int        */ idxRemark
	)
{ 
	this.uriThumb		= uriThumb;
	this.uriImage		= uriImage;
	this.uriLargeImage	= uriLargeImage;
	this.model			= model;
	this.photographer	= photographer;
	this.date			= date;
	this.description	= description;
	this.idxRemark		= idxRemark;
}
  
// PortfolioItem.prototype.XXX

// -->
