jQuery.noConflict();

document.observe('dom:loaded', function() {
  jQuery('#common_problems').show().accordion({
    autoHeight: false
  });

  // Fix an IE6 redraw issue with the tab control when you open a new accordion section.
  if (jQuery.browser.msie) {
    jQuery('#common_problems').bind('accordionchange', function(event, ui) {
      setTimeout(function() {
        ui.newContent.find('ul').hide().show();
      }, 1);
    });
  }

  jQuery('.tabs').tabs();
});