affect only on nested div when there are multiple divs with same class

affect only on nested div when there are multiple divs with same class

    Im trying to expand and collaps divs, which works. But when using the code below all divs with the class 'entry-content' are affected. Id like only the 'entry-content' div ,which is nested in the same div as the expand text, to be affected. There are 20 setups like this in the same page. 
    1. <div class="threecol project-container-color project-container">
    2. <p class="insp_title openIt">
    3.                                                      EXPAND</p>
    4. <div class="project_thumb">
    5. <?php the_post_thumbnail('large'); ?> 
    6. </div>
    7. <div class="entry-content">
    8. <?php the_content(); ?> 
    9. </div>
    10. </div>

    1. $(".entry-content").hide();

    2. $(".openIt").click(function() {
    3. $(".entry-content").slideToggle("fast");
    4. });