Tween Class and button problem

[SIZE=2]Hey guys and girls I was hoping someone could help me with my issue that I am having with my tween class and my onRollOver functions.[/SIZE]

[SIZE=2]My problem is when you rollover it the button works but somehow the onRollOut function is sticking. My second problem is the effect only works properly if you hover right in the middle of the mc, if you hover over the edge of the mc it plays erratically. I read the great tutorials on the Tween Class but that didn’t help me with my problem. [/SIZE]

[SIZE=2]Thanks in advance

[/SIZE]

Code:

import mx.transitions.Tween;
import mx.transitions.easing.*;

panel.onRollOver = over;
panel.onRollOut = out;
panel.buttText.buttonText.text = “PORTFOLIO”;
//panel.onRelease = getURL(“http://www.cnn.com”);

panela.onRollOver = over;
panela.onRollOut = out;
panela.buttText.buttonText.text = “PORTFOLIO”;
//panel.onRelease = getURL(“http://www.cnn.com”);

function over() {
var tw:Tween = new Tween(this,“_xscale”,Elastic.easeOut,100,200,2,true);
var tw2:Tween = new Tween(this,“_yscale”,Elastic.easeOut,100,200,2,true);
}
function out() {
var tw:Tween = new Tween(this,“_xscale”,Back.easeOut,200,100,1,true);
var tw2:Tween = new Tween(this,“_yscale”,Back.easeOut,200,100,1,true);
}