can anyone help me with my dragable windows in flash?

i have a button with the script

on (press) {
_root.attachMovie("homepage","homepage",1);
_root.homepage._x = 348.9;
_root.homepage._y = 216.2;
}

this works and does what i want it to
now on the homepage windows which you can drag is a movieclip inside you have another button which allows you to drag that window

now i did this again with another button/page like bellow

on (press) {
_root.attachMovie("staffpage","staffpage",2);
_root.staffpage._x = 348.9;
_root.staffpage._y = 216.2;
}

this also works but as you see is on a new layer

now that homepage is on layer 1 and staffpage is on layer 2 i added the script inside the movie clip of

on (press) {
_root.homepage.startDrag();
_root.homepage.getNextHighestDepth();
}

to try and bring the back layer forward and to be able to drag it the drag works but cant seem to figure out how to get the depth of the homepage to be on the top off all other pages if you know what i mean if you dont let me know i'll give more info/sample if needed

can anyone please help?

Thanks
Hopies