If you have requirement to create simple tabs in liferay 6.1
AUI().ready('aui-tabs', function(A) { var tabs = new A.TabView( { boundingBox: '#demo', items: [ { content: 'This my content 1', label: 'Tab 1' }, { content: 'This my content 2', label: 'Tab 2' }, { content: 'This my content 3', label: 'Tab 3' } ] } ) .render(); });