Show ads in a certain category

OK this example shows how to put ads in a certain category, if the category 5 is selected then ads.php, this is a php file with our ads in it that is present in the theme we are using, hence TEMPLATEPATH

<?php
if ( in_category('5') )
{
<?php include (TEMPLATEPATH . '/ads.php'); ?>
}

?>