/**
 * javaScript for:
 * Controller: Question
 * Action: Show
 */
$(document).ready(function(){
    $('.readMore, .collapse').click(function(){
        $(this).parents('.answer').children('.shortText, .fullText').toggleClass('truncatorHide');
        return false;
    });
});
