Tabs based on the Day of the week

Tabs based on the Day of the week

Hi, when the page loads I want to display both the div content and highlight the tab for the current day. I've found some code that loads the correct div based on the day but doesn't change the tab that's highlighted:

 $(function () {
    var tabContainers = $('div.tabs > div');
    
    $('div.tabs ul.tabNavigation a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        $('div.tabs ul.tabNavigation a').removeClass('selected');
        $(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
$(document).ready(function() {
       
        today=new Date()
        thisDay=today.getDay()
       
         $("#sunday").hide();
                $("#monday").hide();
                $("#tuesday").hide();
                $("#wednesday").hide();
                $("#thursday").hide();
                $("#friday").hide();
                $("#saturday").hide();
              
        if (thisDay == 0){
           $("#sunday").show();
        }
 
        if (thisDay == 1){
           $("#monday").show();
        }
        if (thisDay == 2){
            $("#tuesday").show();
        }
        if (thisDay == 3){
            $("#wednesday").show();
        }
        if (thisDay == 4){
            $("#thursday").show();
        }
 
        if (thisDay == 5){
            $("#friday").show();
        }
        if (thisDay == 6){
            $("#saturday").show();
        }
       
        });
                });

I know this is incorrect:
 .filter(':first').click();

Any help would be greatly appreciated.

Thanks,