/* Simple Tabs activator */

window.addEvent('domready', function() {

	/**
	 * Element with id 'demo-block' is the container and all h4-elements
	 * inside are fetched as tab headers. The following elements are their
	 * content.
	 */
	var tabs = new SimpleTabs('tabContainer', {
		selector: 'h4'
	});

});