function alignMainPanel()
{             	
  var rightColumnHeight =  $(".panelsizer").offset().top + $(".panelsizer").outerHeight();
  
  if( $( "#contentCellId" ).height() < rightColumnHeight - $( "#contentCellId" ).offset().top )
  {
    if( !$.browser.msie )
    {
      $( "#contentCellId" ).height( rightColumnHeight - $( "#contentCellId" ).offset().top -5 );
    }
    else
    {
      $( "#contentCellId" ).height( rightColumnHeight - $( "#contentCellId" ).offset().top - 5 );
    }
  }
}


$(document).ready( function(){ alignMainPanel(); });


