If all of the procedures are going to be called every time the first on is run (ie. you don't intend to run a procedure by itself) you can have each procedure call the next one when it's through. At the end of each procedure, just have something like the following code calling whatever procedure you want to run next:
exec ProcedureName
@var1 = @whatver,
@var2 = @whatever2
Warning: You want to be careful when doing this, you can easily have the procedures get caught in a loop. (first procedure calls the second procedure that calls the first procedure that calls the second procedure that calls the first procedure....)
Hope this helps!