You can certainly do that. The tabs are just regular links encased in <li> tags:
Code:
<ul id="tablist">
<li><a class="current" href="http://www.google.com" onClick="return handlelink(this)">Google</a></li>
<li><a href="http://www.yahoo.com" onClick="return handlelink(this)">Yahoo</a></li>
<li><a href="http://www.msn.com" onClick="return handlelink(this)">MSN</a></li>
<li><a href="http://www.news.com" onClick="return handlelink(this)">News.com</a></li>
<li><a href="http://www.dynamicdrive.com" onClick="return handlelink(this)">Dynamic Drive</a></li>
</ul>
You can extract the link portions of the above to turn them into regular looking links on the page, for example:
Code:
<a href="http://www.news.com" onClick="return handlelink(this)"><img src="news.gif" /></a>
Bookmarks