// Hint object JavaScript Document

	/**
	 * Constructor
	 */
	function HintObject (hintText) {
		// Define properties
		this.hintText = hintText;
		
		// Attach methods
		this.getText = getText;
	}
	
	/** Define methods */
	function getText () {
		return this.hintText;
	}
