$.fn.headerSwitch = function() {
    this.find("table.block").mouseover(function() {
        $(this).css("backgroundColor", "#f8f8f8");
    }).mouseout(function() {
        $(this).css("backgroundColor", "#fff");
    });
};


