$(function(){
    if($('.right_block .text').length)
    {
        $(window).load(function(){
            var cHeight = $('.content_wrp').height()-10
            $('.right_block .text:eq(1)').css({
                position: 'absolute',
                left: 0,
                top: cHeight/2-$('.right_block .text:eq(1)').height()/2-5
            })
            $('.right_block .text:eq(2)').css({
                position: 'absolute',
                left: 0,
                top: cHeight-$('.right_block .text:eq(2)').height()-20
            })
        })
    }
})
