function init_SimpleTabs() {
	new SimpleTabs($('tab-block'), {
		entrySelector: 'h4',
		onSelect: function(toggle, container) {
			toggle.addClass('tab-selected');
			container.effect('opacity').start(0, 1); // 1) first start the effect
			container.setStyle('display', ''); // 2) then show the element, to prevent flickering
		}
	})
};

function init_SimpleRedTabs() {
	new SimpleTabs($('tab-block-red'), {
		entrySelector: 'h4',
		onSelect: function(toggle, container) {
			toggle.addClass('tab-selected');
			container.effect('opacity').start(0, 1); // 1) first start the effect
			container.setStyle('display', ''); // 2) then show the element, to prevent flickering
		}
	})
};

function init_SimpleImgTabs() {
	new SimpleTabs($('tab-block-img'), {
		entrySelector: 'h4',
		onSelect: function(toggle, container) {
			toggle.addClass('tab-selected');
			container.effect('opacity').start(0, 1); // 1) first start the effect
			container.setStyle('display', ''); // 2) then show the element, to prevent flickering
		}
	})
};