﻿$(document).ready(function() {

    // Expanding Boxes
    $('.expander p').not(':nth-child(2)').hide();
    $('.expander span.more').show();
    $('span.more').click(function() {
        $(this).parent('div').find('p').show();
        $(this).parent('div').find('span.less').show();
        $(this).hide();
    });
    $('span.less').click(function() {
        $(this).parent('div').find('p').hide();
        $(this).parent('div').find('p:nth-child(2)').show();
        $(this).parent('div').find('span.more').show();
        $(this).hide();
    });    

});
