$(function() {
    $("#footer a").click(function() {
        var newWindow = window.open(this.getAttribute('href'), '_blank');
        newWindow.focus();
        return false;
    });
})
