$(function(){
        $('p#get_story').hover(function(){
        $('a', this).toggleClass('brown')
    },  function(){
        $('a', this).toggleClass('brown')
    });
    
    $('p#get_picture').hover(function(){ 
        $('a', this).toggleClass('brown')
    },  function(){
        $('a', this).toggleClass('brown')
    });

    /* _article_subnav.php  - show/hide   */
    $('.article a.more_articles').toggle(function(){ 
        $('.article ul.more').slideDown();
        $(this).text('Less...')
    },
    function(){
        $('.article ul.more').slideUp();
        $(this).text('More...')
    }
    )

    /* news.php  -  article index  - show/hide   */
    $('body.news a.more_articles').toggle(function(){
        $('body.news ul.more').slideDown();
        $(this).text('Less...')
    },
    function(){
        $('body.news ul.more').hide();
        $(this).text('More...')
    }
    )
    /* article_better_together.php  -  show/hide   */
    $('body.better_together a.more').toggle(function(){
        $('body.better_together div.more').slideDown();
        $(this).text('Less...')
    },
    function(){
        $('body.better_together div.more').hide();
        $(this).text('More...')
    }
    ) 
})