CSS Mega Menu - one tab open on page load - jQuery?

I am using this mega menu: http://themes.pixelworkshop.fr/?theme=CSS3MegaMenu

What I would like is for one tab (the second tab) to be open when the page loads without someone having to hover over it first - I would still need it to change to the other tab contents if a different one is hovered though. I tried adding:

    $(document).ready(function() {
        $('ul.menu li.fullwidth:first div.dropdown_fullwidth').css('left','0px');
    });

which kept the content open but didnt have the tabs hover state nor did it change when i hover on another - can someone help a jquery newbie out?