I am new to Using Classes Please help me

I created a class with a timer, the timer works but I am having 2 problems, I want it to respond to events on

I want to start the timer on MOUSE_LEAVE, and stop it on MOUSE_MOVE

so that basically whenever the user removes the mouse from the banner it starts the timer cycle again and when the movie detects the user is interacting with the banner it stops the timer

[COLOR=“Sienna”]package
{
import flash.display.MovieClip;
import flash.utils.Timer;
import flash.events.TimerEvent;
import flash.events.Event;
import flash.events.MouseEvent;
import flash.ui.Mouse;
import flash.net.URLRequest;
import flash.net.navigateToURL;

public class DocumentClass extends MovieClip
{	
	
	private function stopTimer()
	{
	timer.stop();
	}
	
	private function startTimer()
	{
	timer.start();
	}
	
	public var time:int = 7000;
	private static const page1:String = "Page1";
	private static const page3:String = "Page3";
	public var timer:Timer = new Timer(time);
	
	
	
	if (currentFrameLabel != page1){
		time = 5000;
		}else{
		time = 7000;
		}
		
		
	}
	

	
	
	public function DocumentClass():void
	{
		
		stage.addEventListener(Event.MOUSE_LEAVE, startTimer);
		stage.addEventListener(MouseEvent.MOUSE_MOVE, stopTimer);
		timer.addEventListener(TimerEvent.TIMER_COMPLETE, checkCase);
		timer.addEventListener(TimerEvent.TIMER, checkCase);
		timer.start();
		
		
	
		
	
	public function checkCase(e:TimerEvent):void
	{
		
		if (this.currentFrameLabel == page3){
			this.gotoAndStop(page1);
			time = 7000;
		}else{
			this.gotoAndStop(currentFrame + 1);
			time = 5000;
		}
	
	
	}
	
}

}[/COLOR]

How do I call or access the stopTimer and startTimer functions That I created???