/*
function checkContainerHeight() {
    var rightTop        = $('contentRightContent').cumulativeOffset();
    var footerTop       = $('footer').cumulativeOffset();
    $('contentRightContent').setStyle({height: (footerTop[1]-rightTop[1])+"px"});

    Event.observe(window, 'resize', checkContainerHeight);
}
*/