﻿if (!window.MoriahAnimation)
	MoriahAnimation = {};

MoriahAnimation.Page = function() 
{
}

MoriahAnimation.Page.prototype =
{
	handleLoad: function(control, userContext, rootElement) 
	{
		this.control = control;
		
		// Sample event hookup:	
		rootElement.addEventListener("MouseLeftButtonDown", Silverlight.createDelegate(this, this.handleMouseDown));
		this.control.content.findName("Banner").Begin();
	}
}
