not sure but you could use an ad plugin and use conditional tags
Code:
<?php if ( is_category('cat') ): ?>
<!-- Insert code for cat ad here -->
<?php elseif ( is_category( 'dog') ): ?>
<!-- Insert code for cat ad here -->
<?php else: ?>
<!-- Insert code for generic ad here -->
<?php endif; ?>