<div id="dialog1" dojoType="dijit.Dialog" class="lotusTabDialog" title="Share Something">
	<div class="dijitDialogPaneContentArea lotusui30">

		<div dojoType="dijit.layout.TabContainer" style="width:500px;" useSlider="false" useMenu="false" doLayout="false">
			<div dojoType="dijit.layout.ContentPane" title="Status Update" selected="true">
				<div style="height:400px; background:#39abe9;">Lorem ipsum and all around - first...</div>
			</div>
			<div dojoType="dijit.layout.ContentPane" title="File">
				<div style="height:300px; background:#f7bc19;">Lorem ipsum and all around - second...</div>
			</div>
			<div dojoType="dijit.layout.ContentPane" title="Third Party App">
				<div style="height:350px; background:#4bab46;">Lorem ipsum and all around - third...</div>
			</div>
		</div>

	</div>
</div><!-- end dialog -->

<script>
	dojo.require("dijit.Dialog");
	dojo.require("dijit.layout.TabContainer");	
	dojo.addOnLoad(function() {
		dijit.byId("dialog1").show();
	});	
</script>