/*
    This is used to truncate markup.  It requires jquery-truncate.js to be included before.
*/

$(document).ready(function(){
    
    $('div.truncate div').expander({
      slicePoint: 500, 
      widow: 5,
      expandEffect: 'fadeIn', 
      expandSpeed:      '5', 
      expandPrefix:     '',
      expandText:       ' More...',
      userCollapseText: '... less'
    });   
    
    checkColHeights();
   
  
});

