(function(jq){jq(document).ready(function(){

    function removeEmptyRegionContent( parent ) {
        if( jq( parent ).find( '.regionContent' ).children( ).length == 0 ) {
            parent.html( '' )
        }
    }
    removeEmptyRegionContent( jq( '#contentRelated' ) )
    removeEmptyRegionContent( jq( '#contentGlobal' ) )


    function removePaddingBeforeFirstLargeImages( parent ) {

        var regionContent =  parent.find( '.regionContent' )
        var p = regionContent.children( ':first-child' )

        if( p.children( ':first-child' ).is( '.large' ) ) {
            console.debug( 'O' )
            regionContent.css( 'padding-top', 0 )
            regionContent.css( 'border-top-style', 'none' )
            p.css( 'margin-top', 0 )
        }
    }
    
    removePaddingBeforeFirstLargeImages( jq( '#contentMain' ) )
    removePaddingBeforeFirstLargeImages( jq( '#contentRelated' ) )
    removePaddingBeforeFirstLargeImages( jq( '#contentGlobal' ) )

})})(jQuery);

