Your initialization is incorrect. Part of the argument ("> .pane") attempts to call a method in the tabs namespace, which certainly does not exist.
You also initialize the tabs method to a div containing the list (ul), not ul itself.
Assuming html structure:
<div id="tabs"> <ul> // the list items </ul> // tab content divs (all with class="pane") </div>
Something like that:
$('#tabs').tabs(); $('#tabs li').bind('click', function() { // change bg color to 'teal' of all divs with class name '.pane' inside
Learn more about jqueryui.com/tabs
source share