
var RES_introDur = 35;
var RES_introBar = null;
var RES_introTxt = null;
var RES_introCol = null;

function STI_initBoxes() {

    $$( '#col2_content .floatbox' ).each( function( item ) {
        if ( item.getSize().y >= 115 ) {
            var handle = new Element( 'div', { 'class': 'box-handle' } );
            handle.inject( item );
            handle.addEvent( 'click', function() {
                this.getParent().addClass( 'floatbox-extended' );
            } );
        }
    } );
}


