After I set the title, it over-wrote all the titles for the individual pages

WordPress sets the titles of your pages using tags which is normally set int he header.php file of your theme. In my themes I use:

<title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>

Find your themes header.php and try changing the code inside the tags to the code above.