- (void)animationStarted
{
   if ([delegate respondsToSelector:@selector(animationStartedWithView:)])
   {
      [delegate animationStartedWithView:self];
   }
}

- (void)animationStopped
{
   if ([delegate respondsToSelector:@selector(animationHasFinishedWithView:)])
   {
      [delegate animationHasFinishedWithView:self];
   }
}

- (void)dealloc
{
   [boxView release];
   [super dealloc];
}

@end
