$(function(){
    $("#homeToolbar table td")
    .mouseover(function(){
        $(this).addClass("hover");
    })
    .mouseout(function(){
        $(this).removeClass("hover");
    })
    .click(function(){
        $("#homeToolbar table td").removeClass("active");
        $(this).addClass("active");

        $(".homeTab").hide();
        $("#" + $(this).metadata().target).fadeIn();
    });
});