// Article object JavaScript Document

	/**
	 * Constructor
	 */
	function ArticleObject (name, price, portion) {
		// Define properties
		this.name = name;
		this.price = price;
		this.isPortion = portion;
		
		// Attach methods
		this.getName = getName;
		this.getPrice = getPrice;
		this.getIsPortion = getIsPortion;
	}
	
	/** Define methods */
	function getName () {
		return this.name;
	}
	
	function getPrice () {
		return this.price;
	}
	
	function getIsPortion () {
		return this.isPortion;
	}