This is very basic. I have simple images set up on the stage in which each contain this actionscript code:

function project1Clicked(evt:Event):void {
project_1.alpha = 0.2;
}
project_1.addEventListener(MouseEvent.CLICK, project1Clicked);
function project1Over(evt:Event):void {
project_1.alpha = 0.5;
}
project_1.addEventListener(MouseEvent.MOUSE_OVER, project1Over);
function project1Out(evt:Event):void {
project_1.alpha = 1;
}
project_1.addEventListener(MouseEvent.MOUSE_OUT, project1Out);

Now, what I'm hoping to achieve is that when each image is on rollover state, it will pull up text at the bottom of the image. FYI The text is on its on layer.

Could anyone please help me. This is actually a class project so I would greatly appreciate this.