$(document).ready(function() {
    
    //***************************************************
    //  buddies drop down
    //
    
    // get the height of the buddies container 
    var buddies_height = $('#buddies-container').height();
    
    // if the height is greater than 413px, (showing 8 buddies)
    // fix it's height so that it only shows 8 and not the remaining ones
    if (buddies_height > 413)
    {
        $('#buddies-container').css({
            height: '413px'     
        });   
    }
   
    // when you click the view all button, set the container to display all of them 
    $('.view-all-button').click(function() {
        $('#buddies-container').css({
            height: 'auto'
        });
        return false;    
    });
    
    
    
    //***************************************************
    //  creations drop down
    //
    
    var creation_height = $('#creation-container').height();
    
    if (creation_height > 229)
    {
        $('#creation-container').css({
            height: '229px'     
        });   
    }
   
    $('.view-more-button').click(function() {
        $('#creation-container').css({
            height: 'auto'
        });
        return false;    
    });
    
});
