Help, mouseEvent.MOUSE_OUT Issue

First off I have placed my as3 below:
read on…

stop();
import flash.display.MovieClip;
import flash.events.MouseEvent;

kenny.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);
kenny.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler);
beth.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);
beth.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler);

kenny.buttonMode = true;
beth.buttonMode = true;

function mouseOverHandler(e:MouseEvent):void
{
kenny.alpha =1;
beth.alpha =1;
}

function mouseOutHandler(e:MouseEvent):void
{
kenny.alpha =.55;
beth.alpha =.55;
}

Issue :puzzle: : I am trying to get the alpha on rollover for each individual MC, yet when rolling over any MC they are all alpha. Please any help on separating the MC so that an alpha is only applied to one specific MC at a time.

Thanks so much :} …