First, my favorite language (Common Lisp) supports both object-oriented and functional programming, so I don't see any sort of dichotomy.
Second, most organizations don't rely on getting rock star programmers. They plan to keep their software departments sustainable without them, which has several consequences. Their current development staff, while usually competent, is not the sort to learn new things fast and well. Therefore, introducing a new language is going to get resistance and will have, at best, a longer-term payoff. Introducing a new programming paradigm is much more drastic. You can teach a Java programmer C# and .NET fairly quickly, but teaching him Haskell or Prolog will take a long time.
Moreover, most organizations can't afford to have indispensable people. They have to be able to go on after somebody moves to a different job, gets hit by a truck, or converts to Pastafarianism and becomes a missionary. This means they want to be able to hire a replacement fairly fast, and without extensive retraining. This means that they prefer languages and development environments that are already popular.
Third, don't underestimate the language community and resources. There are quite a few things Perl isn't the best language for, but if you can find a few applicable modules at CPAN you might be able to put together a robust application fast.
Therefore, a business would look for O-O languages because they have in-house expertise, can hire quickly and easily, and the extensive community infrastructure makes them easier to work with.
There have been turnovers in popular programming languages, although rarely complete. We still use C, C++, Java, and C# a lot. There's still a lot of COBOL code around, and there's still a thriving Fortran community. BASIC has mostly disappeared except for VB6 and VB.NET, but there's a lot of that around. Pascal has faded, but isn't gone.
And those are all procedural languages, some of them object-oriented. The way paradigms have shifted was to introduce new capabilites into older languages. Structured programming was in COBOL early, in a half-assed way, and made its way into Fortran. Eventually Pascal came out, which was designed around structured programming. O-O was added onto C, and eventually Java and C# appeared. Similarly, some O-O languages are getting a few functional features, and sometime next decade we may see a primarily functional language become very popular (although it will be able to handle structured and O-O paradigms also).