﻿/// <reference path="Silverlight/intellisense.js" />

if (!window.Boost)
	window.Boost = {};

Boost.Scene = function() 
{
}

Boost.Scene.prototype =
{
	handleLoad: function(plugIn, userContext, rootElement) 
	{
		this.plugIn = plugIn;
	}
}

function ButtonMouseEnter(sender, mouseEventArgs)
{
//    sender.findName("ButtonAnimation").stop();
//    sender.findName("ButtonAnimation").begin();
}

function ButtonMouseLeave(sender, mouseEventArgs)
{
//    sender.findName("ButtonAnimation").stop();
}

function ButtonMouseDown(sender, mouseEventArgs)
{
//    sender.findName("ButtonAnimation").stop();
    window.location = "Services.aspx";
}