﻿
jQuery(document).ready(function() {
    jQuery('div.expander').expander({
    // text displayed in a link instead of the hidden part of the element.
    // clicking this will expand/show the hidden/collapsed text
    slicePoint: 5,
    
    expandText: '+ More',
    expandPrefix: '', //&hellip; 
     // class names for summary element and detail element
    //summaryClass: 'summary',
    //detailClass: 'details',

    // class names for <span> around "read-more" link and "read-less" link
    moreClass: 'read-more',
    lessClass: 'read-less',
    
    // effects for expanding and collapsing
    expandEffect: 'fadeIn',
    expandSpeed: 200,
    collapseEffect: 'fadeOut',
    collapseSpeed: 250,

    // allow the user to re-collapse the expanded text.
    userCollapse: false,

    // text to use for the link to re-collapse the text
    userCollapseText: '- Less'
    //serCollapsePrefix: ' ',
});
});


