Attaching different mc and making them revolve circularly

hi dudes,

i am a newby in the actionscript side of flash ,i started learning the language a few months ago and already i am working on a yearbook project. i have designed the interface already however the interface contains five ifferent symbols which will serve as options and my idea is to make these symbols revolve around something circularly or just rotate: like the planets revolving around the sun : and when either one of them is rollover it scales up and when pressed it goes to another frame. i hope you get my point?. iav been struggling with this for sometime now and i really need help urgently cos my submission date is almost due
thanks very much

this is the code i wrote but all it does is shows the symbols at the upper left corner of the screen

pls help!!!
posX = Stage.width/2;
posY = Stage.height/2;

var c = attachMovie(“CIRCLE”,“round”,1);
var s = attachMovie(“square”,“box”,2);
var k = attachMovie(“OVAL”,“ORANGE”,3);
var j = attachMovie(“PENTAGON”,“FIVE”,4);
var games:Array = new Array();
games[0] = [“s”];
games[1] = [“k”];
games[2] = [“j”];
games[3] = [“c”];

boogy = games.length-1;
_global.sand = true;
this.onEnterFrame = function(){
if(sand){
mpos += ((_root._xmouse - posX)/100);
for(i= 0;i<boogy+1;i++){
fade = ((mpos +(360*(boogy+1)))Math.PI)/180;
games
._x = posX+ (Math.cos(fade))300;
games
._y = posY+ (Math.sin(fade))50;
games
._xscale = 100 + (Math.cos(fade) * 50)
games*._yscale = 100 + (Math.cos(fade) * 50);
games*.swapDepths(1000 + (Math.cos(fade) * 100));
sand = false;
games*.onRollOver = function() {
sand = false;
};
games*.onRollOut = function() {
sand = true;
};
}
}
}