function animateImg(el) {
    var $f = $(el);
    $f.css({ opacity: ".75" }).stop().animate({ opacity: ".1" }, 300);
    $f.animate({ opacity: "1.0" }, 300);
}

function setMLink(address) {
    var m = address + "@crejom.be";
    $("span.blackLink").html("&nbsp;<a href='mailto:" + m + "'>" + m);
}

function showImg(el) {
    var $f = $("#mainImage");
    $f.css({ opacity: ".0" });
    $("#mainImage").attr("src", el.src);
    $f.css({ opacity: ".0" }).stop().animate({ opacity: "1.0" }, 600);
}
