/////////////////////////////////////////
///
/// This this file contains javascript functions 
/// that are used to are used to populate the
/// notyouraveragejoe.com portfolio section.
///
/////////////////////////////////////////

// BUILD PORTFOLIO ITEM OBJECT

function PortfolioItem(title,client,img_url,img_p_top,img_p_left)
{
	this.title = title;
	this.client = client;
	this.img_url = img_url;
	this.img_p_top = img_p_top;
	this.img_p_left = img_p_left;
}