﻿var GiantFavoriteAuthors = {
    over: function(divId) {
        $(divId).show();
    },
    out: function(divId) {
        $(divId).hide();
    }
}
