
$(document).ready(function() {
    $("a[rel]").overlay();

    setTimeout(function(){
        $(".message").fadeOut("slow", function () {
            $(".message").remove();
        });
    }, 4000);
});
