You have to start slow and small. Take a portion of code and look at all of the external interfaces. You have to absolutely make sure that these don't change. Now that you have defined that start to look at the internal structure of it and slowly change it around. You'll have to work in small steps and check in frequently to avoid massive merge conflicts, which is one of the biggest problems you're going to have to work against. In a team that size you'll never be able to check everything out and magically make it all better for them. You might want to let people know ahead of time what you are going to do. (which you should always plan out what you do before you do it anyway). If other people are working on it, let them know what is going to change and how it will affect the class etc.
The biggest thing you're going to have find out before you start trying is if people are on board with you. If not, it might be a lost cause , and will cause strife. In this case, bad code and a functioning team that understands the mess the way it is might be better than refactored code. In know this is counter intuitive, but a boss at my old job put it this way. He said the code is horrible, but it works, and the developers here know how it works, and that means the 1000 people using it can do their job which means we get to keep ours. We hated the code and wanted to change it, but he was right.
