Event.observe(document, 'dom:loaded', bindTabs);
function bindTabs() {
  $$('.tabs').each(function(tab){  
    new Control.Tabs(tab);
  });
}
