function dginit() {
    $("table.four-tiles td").hover(tileHover, tileOut).click(tileClick);
    $("table.four-tiles ")
}
function tileHover() {
    $("div.hover-text", this).show(100);
    $("img", this).addClass("hover");
}
function tileOut() {
    $("div.hover-text", this).hide(100);
    $("img", this).removeClass("hover");
}
function tileClick() {
    window.location = $("a", this).attr('href');
}
$(document).ready(dginit);
