<!--
$('.c_con').each(function(){var contentHeight=$(this).height();var boxHeight=$(this).parent().height();if(contentHeight>boxHeight)
{var bottomEdge=$(this).parent().offset().top+boxHeight;$(this).parent().height(contentHeight);$(this).parent().parent().children().each(function(){if($(this).offset().top>=bottomEdge)
{var lowerPos=$(this).offset();$(this).offset({left:lowerPos.left,top:lowerPos.top+contentHeight-boxHeight});}});}});$('.c_field').each(function(){if(!$(this).hasClass('c_no_resize'))
{var height=0;var maxTop=1000000;var maxBottom=0;$(this).children('.c_box').each(function(){if(!$(this).hasClass('c_no_resize'))
{if($(this).offset().top<maxTop)
{maxTop=$(this).offset().top;}
if(($(this).offset().top+$(this).height())>maxBottom)
{maxBottom=$(this).offset().top+$(this).height();}}});height=maxBottom-maxTop;if(height!=-1000000)
{$(this).height(height);}}});$('.c_field').each(function(){var fieldHeightOrig=parseInt($(this).children('.c_height').attr('title'));var fieldTopOrig=parseInt($(this).children('.c_top').attr('title'));var fieldBottomOrig=fieldTopOrig+fieldHeightOrig;var fieldBottom=$(this).offset().top+fieldHeightOrig;var fieldBottomNew=$(this).offset().top+$(this).height();var field=$(this).attr('id');$('.c_field').each(function(){var ho=parseInt($(this).children('.c_height').attr('title'));var to=parseInt($(this).children('.c_top').attr('title'));var top=$(this).offset().top;var bt=top+ho;if(fieldBottomOrig<to&&fieldBottomNew>=$(this).offset().top)
{var newPos=$(this).offset();$(this).offset({left:newPos.left,top:fieldBottomNew+(to-fieldBottomOrig)});}});});var pageHeight=0;var maxTop=1000000;var maxBottom=0;$('.c_field').each(function(){if($(this).offset().top<maxTop)
{maxTop=$(this).offset().top;}
if(($(this).offset().top+$(this).height())>maxBottom)
{maxBottom=$(this).offset().top+$(this).height();}});pageHeight=maxBottom-maxTop;if(pageHeight!=-1000000)
{$('#page').height(pageHeight);}
-->
