You're in trouble here. You've decided to create a manual bibliography rather than use bib(la)tex -- which might be justified in certain circumstances, but probaly the most fundamental feature of a manual bibliography is that the sorting is going to be manual as well ...since there's simply no tool involved that would be capable of doing the sorting for you.
One option that might help you is the one suggested by Jubobs. A second one is to give your thebibliography a format that can be processed by some third-party tool that's capable of sorting plain-text lines: such as any spreadsheet application, or, if you're on Windows, WinSorter (a nice multi-purpose tool for all kinds of text manipulation), or maybe even the TeX editor you're already using (e.g. WinEdt). After choosing one such a tool, try the following procedure:
(1) use a search and replace to remove everything that precedes the strings that you want your bib sorted by. I guess in your case this would be: \bibitem[ -- so the lines now start with Binney etc. (RegExs might be helpful or necessary here).
(2) use a 2nd search and replace to remove all the line breaks that occur within an item, replacing them with some character or string that's not used otherwise, such as ¶ -- so that every bib item is conflated into one single line.
Before:
\bibitem[Binney \textit{et al.}, 1992]{binney}
Binney,~J.~J., Dowrick,~N.~J., Fisher,~A.~J. and Newman,~M.~E.~J.
\newblock{(1992)},
\newblock \textbf{The Theory of critical phenomena: An introduction to the renormalization group}.
\newblock {Clarendon Press, Oxford, UK}.
After:
Binney \textit{et al.}, 1992]{binney} ¶ Binney,~J.~J., Dowrick,~N.~J., Fisher,~A.~J. and Newman,~M.~E.~J. ¶ \newblock{(1992)}, ¶ \newblock \textbf{The Theory of critical phenomena: An introduction to the renormalization group}. ¶ \newblock {Clarendon Press, Oxford, UK}.
(3) Use the sorting tool of your choice to sort the lines.
(4) Use the reverse of steps 2 and 1 to put your bibliography back into its original format.
(5) Consider using an automated bibliography with biblatex for your next paper :)
\bibitem's around manually :) – jub0bs May 04 '13 at 17:39\bibitems created: by hand or via BibTeX? Also, where and how is\newblockdefined? – Mico May 04 '13 at 17:51