function toggleVisible(id) {
    $('#' + id).toggle(0);
}

function mouseOverImage(elem, image) {
    $(elem).hover(
        function () {
            $(image).show("drop", { direction: "down" }, 500);
        },
        function () {
            $(image).hide("drop", { direction: "down" }, 100);
        }
    );
}

