Flash 8 | actionscript 2.0

Hey everyone, awhile back I completed the load random swf tutorial provided here on kirupa. But now I want to load specific swf files when the screen is refreshed or when someone clicks on the home or index.

here is the code, can anyone point me in the right direction?

/////////////// Load random Bannners //////////////////
choice = Math.round (Math.random () * 1);
switch (choice)
{
case 0 :
this.cover_mc.loadMovie (“swf/cover1.swf”);
break;
case 1 :
this.cover_mc.loadMovie (“swf/cover2.swf”);
break;
}