﻿$(document).ready(function() {

    // Get the content height
    var contentHeight = $('.msg-content').height();

    $('#pageflipI').click(function() {
        $('#pageflip .page, .msg-block').stop()
	                        .animate({
	                            width: '400px',
	                            height: (contentHeight + 10) + 'px'
	                        }, 500);
        $('.msg-content').show();
        $('#pageflipI').hide();
        $('#pageflipX').css({ 'display': 'inline' });
        trackPageview('/links/top-right-engage-page-flip');
    });

    $('#pageflipX').click(function(e) {
        $('#pageflip .page, .msg-block').animate({
            width: '76px',
            height: '76px'
        }, 220);
        $('.msg-content').hide();
        $('#pageflipI').show();
        $('#pageflipX').hide();
    });

});
