/** { [autoshowroom.pageobject.info.images]
* @dependency :: [lib.functions.window.Catch]
* @dependency :: [lib.functions.window.AddListener]
* /---/ 
* @author :: Scott McDonald;
* @license :: Lowen Corporation Use Only [Proprietary Script]
* /---/ 
*/

function PageObject() {
	try {
		var target = this;
		this.typename = "autoshowroom.pageobject.info.images";
		this.onPageLoad = function() { };
		this.constructor = function() {
			if (AddListener) {
				AddListener(window, "load", function() { target.onPageLoad(); });
			};
		};
		this.constructor();
	} catch (e) { Catch(this.typename + ".base()", e, true); };
};
/** } [autoshowroom.pageobject.info.images] **/

if (layoutObject) { layoutObject.pageObject = new PageObject(); }
