you can do it easily with perl,
on a unix machine, from the terminal:
perl -pe 's/regex/replace/' input > output
(the > output is optional, and it will just get printed to the terminal)
so:
perl -pe "s/([0-9]+)\s(.*)/'\1' '\2'/g" file > file2
That will find at least one number at the beginning, and capture it (as \1). then some white space, then the rest of the line, captured (as \2). the after the / is the replace bit. just add in the ' s and insert the captured bits.
(if you're on windows, you can get perl here: http://www.perl.org/get.html#more)
to 'name1', 'name2', 'name3', otherwise the logic eludes me... – Wrikken Mar 12 '11 at 9:23