TABLE[id$='viewPanel1'] {background: yellow}
$("#[id$='viewPanel1'] tr td:nth-child(4)").each(function (i) {
if ($(this).innerHeight()>=100){
$(this).append('').children(":first").wrap('')
}
});
initHeight = $('.wrapper').height();
$('.wrapper').bind('mouseenter', function() {
$("#[id$='viewPanel1'] TR:gt(0)").not($(this).closest('tr')).stop(true, true).fadeTo('normal', 0.2);
$(this).closest('Div').next('span').toggleClass('ui-icon-arrowthick-1-n').toggleClass('ui-icon-arrowthick-1-s')
$(this).stop(true, true).animate({
height: this.scrollHeight
});
});
$('.wrapper').bind('mouseleave', function() {
$("#[id$='viewPanel1'] TR").not($(this).closest('tr')).stop(true, true).fadeTo('normal', 1);
$(this).closest('Div').next('span').toggleClass('ui-icon-arrowthick-1-n').toggleClass('ui-icon-arrowthick-1-s')
$(this).stop(true, true).animate({
height: initHeight
});
});