[jQuery] upgrading from tabs 2.7 to tabs 3.0

[jQuery] upgrading from tabs 2.7 to tabs 3.0


I'm working my way through an update from jquery 1.1.4 to jquery 1.2.3
In looking at ui.tabs.js, I notice that default class names have
changed. I also notice that defaults are established here:
$.ui.tabs.defaults = {
...
// CSS classes
navClass: 'ui-tabs-nav',
selectedClass: 'ui-tabs-selected',
unselectClass: 'ui-tabs-unselect',
disabledClass: 'ui-tabs-disabled',
panelClass: 'ui-tabs-panel',
hideClass: 'ui-tabs-hide',
loadingClass: 'ui-tabs-loading'
};
Is it best to change these classes in the tabs source, or can I set
these within my document.ready()??
$(document).ready(function(){
$('#myDiv > ul.tabs-nav').tabs();
});
Thanks!
rolfsf