﻿if (!window.SilverlightSite1)
	SilverlightSite1 = {};

function pageLoad() {
}

SilverlightSite1.Page = function() 
{
}

SilverlightSite1.Page.prototype =
{
	handleLoad: function(control, userContext, rootElement) 
	{
		this.control = control;
		
		this.control.content.findName("Construction").Begin();
	},
	
	// Sample event handler
	handleMouseDown: function(sender, eventArgs) 
	{
		// The following line of code shows how to find an element by name and call a method on it.
		 
	}
}