$(function() {
    $('div.bio table h3').hover(function() { show_region(this); });
})
var show_region = function(obj) {
    $('td#navs h3').css('background-color', '#FFF');
    $('td#sections div').hide();
    var id = $(obj).attr('class');
    $('div#' + id).show();
    $(obj).css('background-color', '#dde4df');
};

