

//when the page is ready
$(document).ready(function() {

    //bind clicking event to the tabs
    $('a.tab_anchor').click(function() {
        toggleTab($(this).attr('href'));
        return false;
    });

    //update the page according to the config file
    document.title = page_title.replace(/(<([^>]+)>)/ig, "");
    $('#sitetitle').html(page_title);
    $('#subtitle').html(sub_title);
    for (i in foot_note) {
        $('#foot_note').append('<div><small>' + foot_note[i] + '</div></small>');
    }

});

