﻿
$(function () {
    // Content expand
    $('#ShowExtendedText').click(function (e) {

        var open = $(this).data('open') ? true : false;
        if (open) {
            $('.content_long').hide();
            $('.content_facts').show();
        } else {
            $('.content_long').show();
            $('.content_facts').hide();
        }

        var newText = $(this).attr('data-toggletext');
        $(this).attr('data-toggletext', $(this).text());
        $(this).text(newText);
        $(this).data('open', !open);
        e.preventDefault();
    });
});
