// Javascript class that handles mouse events 
if (!window.StoryBoard)
	window.StoryBoard = {};

StoryBoard = function() 
{
}



//Properties

StoryBoard.prototype.AutoReverse = this.AutoReverse;
StoryBoard.prototype.BeginTime = this.BeginTime;
StoryBoard.prototype.Children = this.Children;
StoryBoard.prototype.Duration = this.Duration;
StoryBoard.prototype.FillBehavior = this.FillBehavior
StoryBoard.prototype.Name = this.Name;
StoryBoard.prototype.RepeatBehavior = this.RepeatBehavior;
StoryBoard.prototype.SpeedRatio = this.SpeedRatio;
//StoryBoard.prototype.TargetName = this.Storyboard.TargetName;
//StoryBoard.prototype.TargetProperty = this.Storyboard.TargetProperty;



StoryBoard.prototype =
{

    //Property Setters
    setTarget: function(theTarget)
    {
        this.target = theTarget;
    }
}
