There's nothing binding the HTML for the tabs themselves to the tab contents, so you're free to move the former's block of HTML to whereever you wish it to appear on your page:
Code:
<ul id="maintab" class="shadetabs">
<li class="selected"><a href="#" rel="tcontent1">Tab 1</a></li>
<li><a href="#" rel="tcontent2">Tab 2</a></li>
<li><a href="#" rel="tcontent3">Tab 3</a></li>
<li><a href="#" rel="tcontent4">Tab 4</a></li>
<li><a href="http://www.dynamicdrive.com">Dynamic Drive</a></li>
</ul>
"To the right" can mean a lot of things and can be done in many ways. For example, you could create a 2 column table and place this code in the right cell, or if you're handy with CSS, create a two column DIV via CSS. It really depends on how you wish to do this, but there's nothing inside the script stopping you from moving the HTML for the tabs around.
Bookmarks