// Article object JavaScript Document

	/**
	 * Constructor
	 */
	function ArticleObject (name, price, portion, vat, categoryID) {
		// Define properties
		this.name = name;
		this.price = price;
		this.isPortion = portion;
		this.vat = vat;
		this.category = categoryID;

		// Attach methods
		this.getName = getName;
		this.getPrice = getPrice;
		this.getIsPortion = getIsPortion;
		this.getVAT = getVAT;
		this.getCategoryID = getCategoryID;
	}

	/** Define methods */
	function getName () {
		return this.name;
	}

	function getPrice () {
		return this.price;
	}

	function getIsPortion () {
		return this.isPortion;
	}

	function getVAT () {
		return this.vat;
	}

	function getCategoryID() {
		return this.category;
	}
