jQuery( window ).bind( 'load', function() 
{
    jQuery( '.top-container, .bottom-container' ).css( 'height', ( jQuery( window ).height() / 2 ) + 'px' );
});

jQuery( window ).bind( 'resize', function() 
{
    jQuery( '.top-container, .bottom-container' ).css( 'height', ( jQuery( window ).height() / 2 ) + 'px' );
});
