It is so simple to do and its all in divs... (looking at SEO, its all layed out in DIV and LI)
This is basically the layout, and then the javascript
does what the end user sees:
<div class="TabbedPanels" id="tp1">
<ul class="TabbedPanelsTabGroup">
<li class="TabbedPanelsTab" tabindex="0">Tab 1</li>
<li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
<li class="TabbedPanelsTab" tabindex="0">Tab 3</li>
<li class="TabbedPanelsTab" tabindex="0">Tab 4</li>
</ul>
<div class="TabbedPanelsContentGroup">
<div class="TabbedPanelsContent"> Tab 1 Content </div>
<div class="TabbedPanelsContent"> Tab 2 Content </div>
<div class="TabbedPanelsContent"> Tab 3Content </div>
<div class="TabbedPanelsContent"> Tab 4 Content</div>
</div>
</div>
I found it here:
http://labs.adobe.com/technologies/spry/articles/tabbed_panel/ Id really like to see what some "coders" say about
the javascript
it uses, if its bad or good. I have no clue. I was searching for a script
that would expand my text down, and ran across this yesterday. I was then looking at other BV sites and came across what Resposio did and saw the tabbed content. Thought it might work... :)