$(document).ready(function() {
    // hide all of boxes
    $("div.benefit-box").each(function(){
        //$(this).css('display','none');
    });
    $("#showHideA").css('display','none');
});

function showBenefit(wantedBenefit)
{
    // hide all of boxes
    $("div.benefit-box").each(function(){
        $(this).css('display','none');
    });
    // show wanted box
    $("#" + wantedBenefit).css('display','block');
    $("#showHideA").css('display','block');
};

function showAllBenefits()
{
    // show all of boxes
    $("div.benefit-box").each(function(){
        $(this).css('display','block');
    });
    $("#showHideA").css('display','none');
};

