	$(".tabletitle").ready(function(){			
	 $(".tabletitle").html(function(){
	 xhtml = $(this).html();
                      he = $(this).height();
                      if ((he>0) && (xhtml))
                      {
                      if (xhtml.substr(0,3)!='<TD')
{
	 $(this).html('<div class="title_r" style="height:'+he+'px"><div class="title_c" style="height:'+he+'px">'+xhtml+'</div></div>');
} 
                     }
	 });

	 $(".tabletitle td").html(function(){
	 xhtml = $(this).html();
                      he = $(this).height();
                      if ((he>0) && (xhtml))
                      {
	 $(this).html('<div class="title_r1" style="height:'+he+'px"><div class="title_c1" style="height:'+he+'px">'+xhtml+'</div></div>');
                      $(this).css('padding-top','0px');
                      $(this).css('padding-bottom','0px');
                      $(this).css('padding-left','12px');
                      }
	 });
	 });

	$(".tabletitle_box").ready(function(){			
	 $(".tabletitle_box").html(function(){
	 xhtml = $(this).html();
                      he = $(this).height();
                      if ((he>0) && (xhtml))
                      {
	 $(this).html('<div class="title_r_box" style="height:'+he+'px"><div class="title_c_box" style="height:'+he+'px">'+xhtml+'</div></div>');
                      }
	 });
	 });

