function emailProtect() {

    $.each($('a.protectedmail_content'),function() {
        if ($(this).attr('title')) {
            var email = $(this).attr('title');
            var email_text = $(this).html();
        }else 
        {
            var email="tiroli@TIROLER.at";
            var email_text = email;
        }
        email = email.replace("θ","@");
        email_text = email_text.replace("θ","@");
        $(this).attr('title', email);
        $(this).html(email_text);
        $(this).click(	function () {
            $(this).attr("href","mailto:"+email)});
    });

};

