  window.addEvent("domready", function ()
  {
theTabs = new TabGroup({ "tabs": $$("div.tab") });
    $("tab1").addEvent("click", function (a)
    {
      theTabs.showTab(1);
      a.stop();
    });
    $("tab2").addEvent("click", function (a)
    {
      theTabs.showTab(2);
      a.stop();
    });
    $("tab3").addEvent("click", function (a)
    {
      theTabs.showTab(3);
      a.stop();
    });
    $("tab4").addEvent("click", function (a)
    {
      theTabs.showTab(4);
      a.stop();
    });
    $("tab5").addEvent("click", function (a)
    {
      theTabs.showTab(5);
      a.stop();
    });
    $("tab6").addEvent("click", function (a)
    {
      theTabs.showTab(6);
      a.stop();
    });
    $("tab7").addEvent("click", function (a)
    {
      theTabs.showTab(7);
      a.stop();
    });
    $("tab8").addEvent("click", function (a)
    {
      theTabs.showTab(8);
      a.stop();
    });
    $("tab9").addEvent("click", function (a)
    {
      theTabs.showTab(9);
      a.stop();
    });
    $("tab10").addEvent("click", function (a)
    {
      theTabs.showTab(10);
      a.stop();
    });
  });
