﻿if (!window.Silverlight_Banner_1)
	window.Silverlight_Banner_1 = {};

Silverlight_Banner_1.Page = function() 
{
}

Silverlight_Banner_1.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("dots_1_start").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.
		//this.control.content.findName("dots_1_start").Begin();
	}

	

}