function tabsSetup() {

    // set up some quick access variables
    var tab_buttons = ".subnav a";
    var all_tabs = ".section";

    // tab menu click action
    $(tab_buttons).click(function() {
        switchTabs($(this));
       
        return false;
    });

    // switches between tabs
    function switchTabs(clickedTab) {
        // reset the tabs
        resetTabs();

        // get the target tab
        var target_tab = clickedTab.attr('href');
        // show it
        $(target_tab).show();
    }

    // hide all tabs, and remove the active class
    function resetTabs() {
        $(all_tabs).hide();
    }

    // activate the first tab
    $(all_tabs).hide();
    $(".section1").show();
}

//Arial_Rounded_MT_Bold_700.font.js

$(document).ready(function() {
    tabsSetup();  
    			    
});

