jQuery(document).ready(function(){
    jQuery('a', '#accord').each(function(){
        if ($(this).next('ul').length > 0 && $(this).next('ul').attr('rel')=='open') {
            if($(this).hasClass('level1')) $(this).addClass('level1selected');
            $(this).next().show('slow');
        }
    })
    $('.site-text table').each(function(){
      if($(this).attr('class')!='') return;
      $('tr:first',this).addClass('thead');
      $('tr:first>:first',this).addClass('tab-l');
      $('tr:first>:last',this).addClass('tab-r');
      $('tr:not(.thead)',this).each(function(){
//        $('td:first',this).addClass('th');
// S10#10067
      });
    });
    $(".center-plan").each(function(){
      var re=/^(.*\.swf)\?w=(\d+)&h=(\d+)/;
      var r;
      if(r=re.exec($(this).attr("href")))
       $(this).click(function(){
         window.open(r[1],"","width="+r[2]+",height="+r[3]+",top=100,directories=0,location=0,menubar=0,resizable=0,scroolbars=0,status=0,toolbar=0");
         return false;
       });
    });
})

