"If" and multiple "else" dilemma

[FONT=Calibri][SIZE=3]I have a flash movie that I have put into several scenes. I need it [/SIZE][/FONT]
[FONT=Calibri][SIZE=3]to work almost like a song with 10 verses and 1 chorus. [/SIZE][/FONT]
[FONT=Calibri][SIZE=3][/SIZE][/FONT]
[FONT=Calibri][SIZE=3]It plays a “verse” then goes to the “chorus” (determines the next “verse” is 2) then goes to the 2nd “verse” then back to the “chorus” (determines the next verse is 3) then goes to the 3rd “verse” and so on.[/SIZE][/FONT]

What is the best way to make that happen?

In “verse 1” I assigned a variable “b” to = 2
and in “verse 2” I assigned it to be = 3
and so on.

So when it goes through to the “chorus”, it needs to read through 8 “if” statements asking is “b” == 2, 3, 4, 5, 6, 7, 8, or 9.

Because 10 will just end and 1 is an automatic start.

How do I get the Action Script to check which number the variable is and then send the animation to the coresponding scene?