The article you are trying to access is permanently deleted.
mxd = arcpy.mapping.MapDocument("Current")
outPath = 'C:\\Temp\\' # for example...
lyrList = arcpy.mapping.ListLayers(mxd)
for lyr in lyrList: # iterate over the layers
arcpy.FeatureClassToShapefile_conversion(lyr,outPath)