How to make a tab open when linked from separate page?

How to make a tab open when linked from separate page?


I have a simple tab set up like this....
<script type="text/javascript">
    $(document).ready(function(){
        $('#tabs div').hide();
        $('#tabs div:first').show();
        $('#tabs ul li:first').addClass('active');
        $('#tabs ul li a').click(function(){
        $('#tabs ul li').removeClass('active');
        $(this).parent().addClass('active');
        var currentTab = $(this).attr('href');
        $('#tabs div').hide();
        $(currentTab).show();
        return false;
    });
});
</script>
I want to be able to open a tab on this page
(http://www.dirtybirddesignlab.com/5280Main/services.html) from the drop
down under "services" on the index page. IE clicking on "Creative Design"
would open the services.html page with the Creative Design tab displayed. I
have been looking around for what seems like forever and can't find anything
that works. Please help a guy out!
Thanks,
Kane
--
View this message in context: http://old.nabble.com/How-to-make-a-tab-open-when-linked-from-separate-page--tp26261095s27240p26261095.html
Sent from the jQuery UI Discussion mailing list archive at Nabble.com.
--