Showing ads after posts in home page
I am using this code for showing ads after one post in the home page. It's working fine. But I want to show an ad after one post and another one ads after 5 post. What will the loop be. Any suggestions?
?php if((have_posts)): ?
?php $count=0; ?
?php while(have_posts()): the_post(); ?
?php $count ?
?php if($count==2): ?
divAds code here/div
h2a href="?php the_permalink(); ? " title="?php the_title(); ?"?php. the_title(); ?/a/h2
?php else: ?
h2a href="?php the_permalink(); ?" title="?php the_title(); ?"?php the_title(); ?/a/h2
?php endif; ?
?php endwhile; ?
?php endif; ?