
function header_resize() {
    if (screen.height >= 1000) {
        $('#header').css({
            paddingTop: '50px'
        }).find('h1').css({
            marginBottom: '50px'
        }).find('img').attr('src', webroot + 'img/biglogo.gif');
    }
}

$(function() {
    // Footer
    var fhtml = $('#footer').html()
    $('#footer').html(fhtml.replace(/::/g, '<span class="divider"></span>'));

    // Font replacement
    Cufon.replace('h2', {
    });
    Cufon.replace('#main-menu a, .submenu a, #footer', {
        hover: true,
        fontWeight: 'bold'
    });
    Cufon.replace('.names-list dt a', {
        hover: true
    });
});
