Hello!
<script type="text/javascript">
$(function() {
$("#tabs*").tabs({
});
});
</script>
That could do it. The other would be setting a "for" loop ( for i=1, i++, ...).
Perhaps the better solution would be using in HTML/CSS a class "tabs" and not an id, then you won't have the problem with the different names - jQuery is more performant with classes then with IDs...
Yours Michael