Link to specific tab

Link to specific tab

Hello:  I would like to link to a specific jQuery tab.  I have 3 tabs: tabs1, tab2, tab3.  My tabs are working fine.  I'm using the latest version of jQuery and jQuery css:

        <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
   <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
   <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>

I'm also using the bare bones tab script for tabs:

<script type="text/javascript">
$(function() {
$("#tabs").tabs();
});
</script>

I've read the documentation at  http://docs.jquery.com/UI/Tabs#...select_a_tab_from_a_text_link_instead_of_clicking_a_tab_itself and I'm still not having any success.  Please help if you can. Thanks.