import flash.events.MouseEvent;
//Start button mouse in-out effect
stop();
start_btn.addEventListener(MouseEvent.MOUSE_OVER, starthover_fn);
start_btn.addEventListener(MouseEvent.MOUSE_UP, playflash_fn);
function starthover_fn(event:MouseEvent){
start_btn.gotoAndStop(2);
start_btn.removeEventListener(MouseEvent.MOUSE_OVER, starthover_fn);
start_btn.addEventListener(MouseEvent.MOUSE_OUT, starthoverout_fn);
}
function starthoverout_fn(event:MouseEvent){
start_btn.gotoAndStop(1);
start_btn.removeEventListener(MouseEvent.MOUSE_OUT,starthoverout_fn);
start_btn.addEventListener(MouseEvent.MOUSE_OVER, starthover_fn);
}