Hi Have just found the answer.
before the loop
<?php while (have_posts()) : the_post(); ?>
put
<?php
// we add this, to show all posts in our
// Glossary sorted alphabetically
$posts = query_posts($query_string .
'&orderby=title&order=asc&posts_per_page=-1'); ?>
It worked a treat!