if (!window.SilverlightModule)
	window.SilverlightModule = {};

SilverlightModule.Page = function() 
{
}

SilverlightModule.Page.prototype =
{
	handleLoad: function(control, userContext, rootElement) 
	{
		this.button = rootElement.findName("ClickHere");
		this.button.addEventListener("MouseLeftButtonDown", Silverlight.createDelegate(this, this.handleMouseDown));
	},
	
	handleMouseDown: function(sender, eventArgs) 
	{
		var mouseDownAnimation = sender.findName("Timeline1");
		mouseDownAnimation.begin(); 
	}
}