$(function() {
		   
    adjustContent();

    if ( $.browser.msie ) {
        if ( $.browser.version < 6.0 )
        {
            $(window).bind('resize', function() {
                adjustContent();
            });
        }
    } else {
        $(window).bind('resize', function() {
            adjustContent();

        });
    }
});

function adjustContent ()
{
	
    var contentHeight =  $("#cntMain").height() - $("#cntHeader").height();

    if ( $("#contentLeft").height() > contentHeight ) {
        $("#cntContent").css('height', $("#contentLeft").height())
    } else {
        $("#cntContent").css('height', contentHeight);
    }
    return false;
}