Never mind I found the solution ??
To exclude category 3 from the main page I had to add this right before my loop in loop.php.
<?php
if (is_home()) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=-3&paged=$paged");
}
?>