ok, i looked through thaose pages and i then took teh page.php template added some code to it and saved it as events.php, code is a s follows, is this the proper way to achieve what i am trying to do?
thanks again.
<?php
/*
Template Name: Events
*/
?>
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php
$query= 'cat=events'; // concatenate the query
query_posts($query); // run the query
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="pagepost">
<h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
<div class="entrytext">
<?php the_content('<p class="serif">Read more »</p>'); ?>
<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>