In your xml file have the tab id and product id
<code>
<tab Text="Test" ID="tabId1" ProductIdD="productId1" />
</code>
And function could be something like this,
<code>
ClientSideOnTabMouseOver="TabStrip1_OnTabMouseOver"
function TabStrip1_OnTabMouseOver(tab)
{
ajax_showTooltipr(tab.ID, tab.GetProperty("ProductID"));
}
</code>