Something like
Thanks,<apex:tab label="Main" name="main" id="tabMain">
<apex:detail relatedList="false" title="true"/>
</apex:tab>
<apex:tab label="Contacts" name="Contacts" id="tabContact">
<apex:detail id="{Account.Contact.Id}"/>
</apex:tab>
2 answers

Mathew,I've never done it but I don't see why you can't do it, you can display whatever you want in the VF page. It looks like you'd just need to wrap those apex:tab elements within a apex:tabPanel element.You'd likely need a custom apex controller though to be able to get the appropriate sets of data for each tab.