﻿/** { [autoshowroom.pageobject.contact]
* @dependency :: [lib.functions.window.Catch]
* @dependency :: [lib.objects.window.swfobject]
* @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.contact";
		this.onPageLoad = function() {
			var so = new swfobject.embedSWF("/assets/flash/beforeafter4.swf", "flashLoader", 199, 184, "7", "/inc/swf/expressInstall.swf");
			/*, { wmode: "transparent" }, { wmode: "transparent" }, { wmode: "transparent" });*/
		}
		this.constructor = function() {
			if (AddListener) {
				AddListener(window, "load", function() {
					target.onPageLoad();
				});
			}
		};
		this.constructor();
	} catch (e) { Catch(this.typename + ".base", e, true); };
};

if (layoutObject) { layoutObject.pageObject = new PageObject(); }
/** } [autoshowroom.pageobject.contact] **/