/*
$(document).ready(
    function ()
    {
        if( document.getElementById( "texto" ).offsetHeight > document.getElementById( "right" ).offsetHeight )
        {
            document.getElementById( "texto" ).style.height = document.getElementById( "right" ).offsetHeight + 'px';
            document.getElementById( "texto" ).style.overflow = "auto";
        }
    }
);
*/

window.onload = function()
{
    if( document.getElementById( "texto" ).offsetHeight > document.getElementById( "right" ).offsetHeight + 152 )
    {
        //document.getElementById( "bottom" ).top = -430 + "px";
        document.getElementById( "maosBottom" ).style.top = -100 + "px";
        document.getElementById( "bottom" ).style.top = -100 + "px";
    }
}