Having used SourceSafe and later SVN for over 15 years, I'll share my take on git/hg.
I remember having a little trouble wrapping my head around SourceSafe, but it didn't really take long. It was like a "library" where you check out code instead of books. It got in the way of my normal thinking sometimes, but not for long.
SVN was a little different in that by default, more than one person could check out the same "book"/code at the same time. This meant that merging might be needed. Again, that took a little more brainpower, but no big deal. I don't remember SVN getting in my way at all, since I was already using VC with SourceSafe.
DVCS was also something that took a little getting used to, but I understood the concepts pretty quickly. However, I was amazed at how much it "got in my way." I would update something, but others couldn't see it because I forgot to push. I accidentally created new, unintended branches. Even little things like after an hg clone, your working copy is totally empty until you update. It just required a lot more of my brainpower to get working and it stubbed my toes quite a bit. Was it worth it? Absolutely. I love it! The power it gives is awesome. But it took some pain along the way.
If you can see your coworkers saying "Hey, this thing is getting in my way. I don't understand it. Why do we need this anyway? I just want to write my goto-filled code and not worry about the VCS stuff." I would start with SVN and maybe try DVCS in a few years.
However, if they would say "Hey, this is getting in my way. I must be doing something wrong because so many smart people really like DVCS. I'll need to dig in and get used to this." then DVCS is for you.
Update
I would also add that GUI tools for Mercurial and Git are somewhat crude and less mature than something like Tortoise SVN. I really like the command line, now that I know what I'm doing, but the TortoiseSVN gui really makes adoption a lot easier.
It almost makes me feel dirty advocating SVN like this, but sometimes you have to be pragmatic and take what you can get. SVN isn't the best, but it's way better than no VCS at all.