Button Problem

Hi i am developing a web page for myself and i am having a bit of trouble with it. The problem i am stuck on is when you click on the home button ,when you click it again, the movie clip starts moving from the last position it finished. The code i’m using is on my actions layer line 27


  homeTween2 = new Tween(homeContent_mc,"_y", Elastic.easeOut,150,homeContent_mc._y-10,12,true);
 

What i am trying to do is to set a fixed position for my movie clip being 150 so that after you click it more than once it returns back to its original position. I 've also changed it to having

  homeTween2 = new Tween(homeContent_mc,"_y", Elastic.easeOut,homeContent_mc,homeContent_mc._y-10,12,true);

but by doing this it does not rise up the screen, it merely stays in its position without moving.

Can somebody help me please.