$(function() {
    $('#gnavi a').each(function() {
        $(this).click(function() {
            window.open($(this).attr('href'));
            return false;
        });
    });
});
