function border_fix() {
    jQuery("#content_centre").css("height","auto");
    
    if ( jQuery("#content_right").height() > jQuery("#content_centre").height() ) {
        jQuery("#content_centre").height( jQuery("#content_right").height() );
        debugvar = 'tried to fix';
    }
	else{
		jQuery("#content_centre").css('height', 'auto' );
                debugvar = 'didnt need to fix';
	}
}
jQuery(document).ready(function() {
border_fix();
});

