// Wait for the content ...
window.addEvent('domready', function() {
    var container = $('tab-container');
    if (container !== null) {
        new SimpleTabs(container, {
            selector: 'h2'
        });
    }
});
