function education_toggle(id) {
    var d=jQuery("#"+id).css("display")=="none";
    jQuery(".education_hide").each(function(i) {
        jQuery(this).css("display", "none");
    });
    if (d) jQuery("#"+id).css("display","block");
}

function social_toggle(id) {
    var d=jQuery("#"+id).css("display")=="none";
    jQuery(".social_hide").each(function(i) {
        jQuery(this).css("display", "none");
    });
    if (d) jQuery("#"+id).css("display","block");
}
